{"startTimestamp":["2021-04-27 18:24:26"],"endTimestamp":["2021-04-27 20:15:54"],"executionTime":["2 hours"],"CheckResults":[{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.904578 secs","QUERY_TEXT":"\n/*********\nTable Level:  \nMEASURE_PERSON_COMPLETENESS\nDetermine what #/% of persons have at least one record in the cdmTable\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.person_id) as num_violated_rows\n\tfrom\n\t(\n\t\tselect cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.observation_period cdmtable2\n\t\ton cdmtable.person_id = cdmtable2.person_id\n\t\twhere cdmtable2.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"measurePersonCompleteness","CHECK_LEVEL":"TABLE","CHECK_DESCRIPTION":"The number and percent of persons in the CDM that do not have at least one record in the OBSERVATION_PERIOD table","CDM_TABLE_NAME":"OBSERVATION_PERIOD","SQL_FILE":"table_person_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Validation","checkId":1,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"1.1"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.219848 secs","QUERY_TEXT":"\n/*********\nTable Level:  \nMEASURE_PERSON_COMPLETENESS\nDetermine what #/% of persons have at least one record in the cdmTable\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.person_id) as num_violated_rows\n\tfrom\n\t(\n\t\tselect cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.visit_occurrence cdmtable2\n\t\ton cdmtable.person_id = cdmtable2.person_id\n\t\twhere cdmtable2.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"measurePersonCompleteness","CHECK_LEVEL":"TABLE","CHECK_DESCRIPTION":"The number and percent of persons in the CDM that do not have at least one record in the VISIT_OCCURRENCE table","CDM_TABLE_NAME":"VISIT_OCCURRENCE","SQL_FILE":"table_person_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Validation","checkId":2,"FAILED":0,"THRESHOLD_VALUE":95,"_row":"1.2"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.141259 secs","QUERY_TEXT":"\n/*********\nTable Level:  \nMEASURE_PERSON_COMPLETENESS\nDetermine what #/% of persons have at least one record in the cdmTable\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.person_id) as num_violated_rows\n\tfrom\n\t(\n\t\tselect cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.condition_occurrence cdmtable2\n\t\ton cdmtable.person_id = cdmtable2.person_id\n\t\twhere cdmtable2.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"measurePersonCompleteness","CHECK_LEVEL":"TABLE","CHECK_DESCRIPTION":"The number and percent of persons in the CDM that do not have at least one record in the CONDITION_OCCURRENCE table","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","SQL_FILE":"table_person_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Validation","checkId":3,"FAILED":0,"THRESHOLD_VALUE":95,"_row":"1.3"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.420063 secs","QUERY_TEXT":"\n/*********\nTable Level:  \nMEASURE_PERSON_COMPLETENESS\nDetermine what #/% of persons have at least one record in the cdmTable\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.person_id) as num_violated_rows\n\tfrom\n\t(\n\t\tselect cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.drug_exposure cdmtable2\n\t\ton cdmtable.person_id = cdmtable2.person_id\n\t\twhere cdmtable2.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"measurePersonCompleteness","CHECK_LEVEL":"TABLE","CHECK_DESCRIPTION":"The number and percent of persons in the CDM that do not have at least one record in the DRUG_EXPOSURE table","CDM_TABLE_NAME":"DRUG_EXPOSURE","SQL_FILE":"table_person_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Validation","checkId":4,"FAILED":0,"THRESHOLD_VALUE":95,"_row":"1.4"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.335124 secs","QUERY_TEXT":"\n/*********\nTable Level:  \nMEASURE_PERSON_COMPLETENESS\nDetermine what #/% of persons have at least one record in the cdmTable\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.person_id) as num_violated_rows\n\tfrom\n\t(\n\t\tselect cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable2\n\t\ton cdmtable.person_id = cdmtable2.person_id\n\t\twhere cdmtable2.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"measurePersonCompleteness","CHECK_LEVEL":"TABLE","CHECK_DESCRIPTION":"The number and percent of persons in the CDM that do not have at least one record in the PROCEDURE_OCCURRENCE table","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","SQL_FILE":"table_person_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Validation","checkId":5,"FAILED":0,"THRESHOLD_VALUE":95,"_row":"1.5"},{"NUM_VIOLATED_ROWS":13,"PCT_VIOLATED_ROWS":0.13,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.134533 secs","QUERY_TEXT":"\n/*********\nTable Level:  \nMEASURE_PERSON_COMPLETENESS\nDetermine what #/% of persons have at least one record in the cdmTable\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.person_id) as num_violated_rows\n\tfrom\n\t(\n\t\tselect cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.device_exposure cdmtable2\n\t\ton cdmtable.person_id = cdmtable2.person_id\n\t\twhere cdmtable2.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"measurePersonCompleteness","CHECK_LEVEL":"TABLE","CHECK_DESCRIPTION":"The number and percent of persons in the CDM that do not have at least one record in the DEVICE_EXPOSURE table","CDM_TABLE_NAME":"DEVICE_EXPOSURE","SQL_FILE":"table_person_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Validation","checkId":6,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"1.6"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.187820 secs","QUERY_TEXT":"\n/*********\nTable Level:  \nMEASURE_PERSON_COMPLETENESS\nDetermine what #/% of persons have at least one record in the cdmTable\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.person_id) as num_violated_rows\n\tfrom\n\t(\n\t\tselect cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.measurement cdmtable2\n\t\ton cdmtable.person_id = cdmtable2.person_id\n\t\twhere cdmtable2.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"measurePersonCompleteness","CHECK_LEVEL":"TABLE","CHECK_DESCRIPTION":"The number and percent of persons in the CDM that do not have at least one record in the MEASUREMENT table","CDM_TABLE_NAME":"MEASUREMENT","SQL_FILE":"table_person_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Validation","checkId":7,"FAILED":0,"THRESHOLD_VALUE":95,"_row":"1.7"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.914365 secs","QUERY_TEXT":"\n/*********\nTable Level:  \nMEASURE_PERSON_COMPLETENESS\nDetermine what #/% of persons have at least one record in the cdmTable\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.person_id) as num_violated_rows\n\tfrom\n\t(\n\t\tselect cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.visit_detail cdmtable2\n\t\ton cdmtable.person_id = cdmtable2.person_id\n\t\twhere cdmtable2.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"measurePersonCompleteness","CHECK_LEVEL":"TABLE","CHECK_DESCRIPTION":"The number and percent of persons in the CDM that do not have at least one record in the VISIT_DETAIL table","CDM_TABLE_NAME":"VISIT_DETAIL","SQL_FILE":"table_person_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Validation","checkId":8,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"1.8"},{"NUM_VIOLATED_ROWS":100,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.134457 secs","QUERY_TEXT":"\n/*********\nTable Level:  \nMEASURE_PERSON_COMPLETENESS\nDetermine what #/% of persons have at least one record in the cdmTable\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.person_id) as num_violated_rows\n\tfrom\n\t(\n\t\tselect cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.note cdmtable2\n\t\ton cdmtable.person_id = cdmtable2.person_id\n\t\twhere cdmtable2.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"measurePersonCompleteness","CHECK_LEVEL":"TABLE","CHECK_DESCRIPTION":"The number and percent of persons in the CDM that do not have at least one record in the NOTE table","CDM_TABLE_NAME":"NOTE","SQL_FILE":"table_person_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Validation","checkId":9,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"1.9"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.941339 secs","QUERY_TEXT":"\n/*********\nTable Level:  \nMEASURE_PERSON_COMPLETENESS\nDetermine what #/% of persons have at least one record in the cdmTable\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.person_id) as num_violated_rows\n\tfrom\n\t(\n\t\tselect cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.observation cdmtable2\n\t\ton cdmtable.person_id = cdmtable2.person_id\n\t\twhere cdmtable2.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"measurePersonCompleteness","CHECK_LEVEL":"TABLE","CHECK_DESCRIPTION":"The number and percent of persons in the CDM that do not have at least one record in the OBSERVATION table","CDM_TABLE_NAME":"OBSERVATION","SQL_FILE":"table_person_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Validation","checkId":10,"FAILED":0,"THRESHOLD_VALUE":95,"_row":"1.10"},{"NUM_VIOLATED_ROWS":60,"PCT_VIOLATED_ROWS":0.6,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.002859 secs","QUERY_TEXT":"\n/*********\nTable Level:  \nMEASURE_PERSON_COMPLETENESS\nDetermine what #/% of persons have at least one record in the cdmTable\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.person_id) as num_violated_rows\n\tfrom\n\t(\n\t\tselect cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.specimen cdmtable2\n\t\ton cdmtable.person_id = cdmtable2.person_id\n\t\twhere cdmtable2.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"measurePersonCompleteness","CHECK_LEVEL":"TABLE","CHECK_DESCRIPTION":"The number and percent of persons in the CDM that do not have at least one record in the SPECIMEN table","CDM_TABLE_NAME":"SPECIMEN","SQL_FILE":"table_person_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Validation","checkId":11,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"1.11"},{"NUM_VIOLATED_ROWS":100,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.472707 secs","QUERY_TEXT":"\n/*********\nTable Level:  \nMEASURE_PERSON_COMPLETENESS\nDetermine what #/% of persons have at least one record in the cdmTable\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.person_id) as num_violated_rows\n\tfrom\n\t(\n\t\tselect cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.payer_plan_period cdmtable2\n\t\ton cdmtable.person_id = cdmtable2.person_id\n\t\twhere cdmtable2.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"measurePersonCompleteness","CHECK_LEVEL":"TABLE","CHECK_DESCRIPTION":"The number and percent of persons in the CDM that do not have at least one record in the PAYER_PLAN_PERIOD table","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","SQL_FILE":"table_person_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Validation","checkId":12,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"1.12"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.150679 secs","QUERY_TEXT":"\n/*********\nTable Level:  \nMEASURE_PERSON_COMPLETENESS\nDetermine what #/% of persons have at least one record in the cdmTable\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.person_id) as num_violated_rows\n\tfrom\n\t(\n\t\tselect cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.drug_era cdmtable2\n\t\ton cdmtable.person_id = cdmtable2.person_id\n\t\twhere cdmtable2.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"measurePersonCompleteness","CHECK_LEVEL":"TABLE","CHECK_DESCRIPTION":"The number and percent of persons in the CDM that do not have at least one record in the DRUG_ERA table","CDM_TABLE_NAME":"DRUG_ERA","SQL_FILE":"table_person_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Validation","checkId":13,"FAILED":0,"THRESHOLD_VALUE":95,"_row":"1.13"},{"NUM_VIOLATED_ROWS":56,"PCT_VIOLATED_ROWS":0.56,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.204928 secs","QUERY_TEXT":"\n/*********\nTable Level:  \nMEASURE_PERSON_COMPLETENESS\nDetermine what #/% of persons have at least one record in the cdmTable\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.person_id) as num_violated_rows\n\tfrom\n\t(\n\t\tselect cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.dose_era cdmtable2\n\t\ton cdmtable.person_id = cdmtable2.person_id\n\t\twhere cdmtable2.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"measurePersonCompleteness","CHECK_LEVEL":"TABLE","CHECK_DESCRIPTION":"The number and percent of persons in the CDM that do not have at least one record in the DOSE_ERA table","CDM_TABLE_NAME":"DOSE_ERA","SQL_FILE":"table_person_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Validation","checkId":14,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"1.14"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.232997 secs","QUERY_TEXT":"\n/*********\nTable Level:  \nMEASURE_PERSON_COMPLETENESS\nDetermine what #/% of persons have at least one record in the cdmTable\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.person_id) as num_violated_rows\n\tfrom\n\t(\n\t\tselect cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.condition_era cdmtable2\n\t\ton cdmtable.person_id = cdmtable2.person_id\n\t\twhere cdmtable2.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"measurePersonCompleteness","CHECK_LEVEL":"TABLE","CHECK_DESCRIPTION":"The number and percent of persons in the CDM that do not have at least one record in the CONDITION_ERA table","CDM_TABLE_NAME":"CONDITION_ERA","SQL_FILE":"table_person_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Validation","checkId":15,"FAILED":0,"THRESHOLD_VALUE":95,"_row":"1.15"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.038264 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"person_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.person cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PERSON_ID is present in the PERSON table as expected based on the specification. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":16,"FAILED":0,"_row":"2.1"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.756641 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = gender_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"gender_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.person cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if GENDER_CONCEPT_ID is present in the PERSON table as expected based on the specification. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"gender_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":17,"FAILED":0,"_row":"2.2"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.634701 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = year_of_birth\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"year_of_birth\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.person cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if YEAR_OF_BIRTH is present in the PERSON table as expected based on the specification. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"year_of_birth","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":18,"FAILED":0,"_row":"2.3"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.670896 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = month_of_birth\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"month_of_birth\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.person cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if MONTH_OF_BIRTH is present in the PERSON table as expected based on the specification. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"month_of_birth","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":19,"FAILED":0,"_row":"2.4"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.635496 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = day_of_birth\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"day_of_birth\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.person cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DAY_OF_BIRTH is present in the PERSON table as expected based on the specification. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"day_of_birth","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":20,"FAILED":0,"_row":"2.5"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.633838 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = birth_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"birth_datetime\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.person cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if BIRTH_DATETIME is present in the PERSON table as expected based on the specification. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"birth_datetime","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":21,"FAILED":0,"_row":"2.6"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.702728 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = race_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"race_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.person cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if RACE_CONCEPT_ID is present in the PERSON table as expected based on the specification. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"race_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":22,"FAILED":0,"_row":"2.7"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.704763 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = ethnicity_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"ethnicity_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.person cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if ETHNICITY_CONCEPT_ID is present in the PERSON table as expected based on the specification. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"ethnicity_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":23,"FAILED":0,"_row":"2.8"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.134886 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = location_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"location_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.person cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if LOCATION_ID is present in the PERSON table as expected based on the specification. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"location_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":24,"FAILED":0,"_row":"2.9"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.817133 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"provider_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.person cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PROVIDER_ID is present in the PERSON table as expected based on the specification. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":25,"FAILED":0,"_row":"2.10"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.807651 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = care_site_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"care_site_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.person cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CARE_SITE_ID is present in the PERSON table as expected based on the specification. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":26,"FAILED":0,"_row":"2.11"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.746821 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = person_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"person_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.person cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PERSON_SOURCE_VALUE is present in the PERSON table as expected based on the specification. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"person_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":27,"FAILED":0,"_row":"2.12"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.329729 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = gender_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"gender_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.person cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if GENDER_SOURCE_VALUE is present in the PERSON table as expected based on the specification. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"gender_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":28,"FAILED":0,"_row":"2.13"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.749762 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = gender_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"gender_source_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.person cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if GENDER_SOURCE_CONCEPT_ID is present in the PERSON table as expected based on the specification. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"gender_source_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":29,"FAILED":0,"_row":"2.14"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.118661 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = race_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"race_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.person cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if RACE_SOURCE_VALUE is present in the PERSON table as expected based on the specification. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"race_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":30,"FAILED":0,"_row":"2.15"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.717606 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = race_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"race_source_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.person cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if RACE_SOURCE_CONCEPT_ID is present in the PERSON table as expected based on the specification. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"race_source_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":31,"FAILED":0,"_row":"2.16"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.555833 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = ethnicity_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"ethnicity_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.person cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if ETHNICITY_SOURCE_VALUE is present in the PERSON table as expected based on the specification. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"ethnicity_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":32,"FAILED":0,"_row":"2.17"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.618716 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = ethnicity_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"ethnicity_source_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.person cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if ETHNICITY_SOURCE_CONCEPT_ID is present in the PERSON table as expected based on the specification. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"ethnicity_source_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":33,"FAILED":0,"_row":"2.18"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.771711 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = observation_period_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"observation_period_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if OBSERVATION_PERIOD_ID is present in the OBSERVATION_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"observation_period_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":34,"FAILED":0,"_row":"2.19"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.857504 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"person_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PERSON_ID is present in the OBSERVATION_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":35,"FAILED":0,"_row":"2.20"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.531323 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = observation_period_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"observation_period_start_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if OBSERVATION_PERIOD_START_DATE is present in the OBSERVATION_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"observation_period_start_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":36,"FAILED":0,"_row":"2.21"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.699532 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = observation_period_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"observation_period_end_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if OBSERVATION_PERIOD_END_DATE is present in the OBSERVATION_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"observation_period_end_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":37,"FAILED":0,"_row":"2.22"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.569103 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = period_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"period_type_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PERIOD_TYPE_CONCEPT_ID is present in the OBSERVATION_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"period_type_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":38,"FAILED":0,"_row":"2.23"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.716614 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_occurrence_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_OCCURRENCE_ID is present in the VISIT_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":39,"FAILED":0,"_row":"2.24"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.840152 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"person_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PERSON_ID is present in the VISIT_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":40,"FAILED":0,"_row":"2.25"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.702602 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_CONCEPT_ID is present in the VISIT_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":41,"FAILED":0,"_row":"2.26"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.670818 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_start_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_START_DATE is present in the VISIT_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_start_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":42,"FAILED":0,"_row":"2.27"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.434668 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_start_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_start_datetime\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_START_DATETIME is present in the VISIT_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_start_datetime","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":43,"FAILED":0,"_row":"2.28"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.918411 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_end_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_END_DATE is present in the VISIT_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_end_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":44,"FAILED":0,"_row":"2.29"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.838874 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_end_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_end_datetime\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_END_DATETIME is present in the VISIT_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_end_datetime","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":45,"FAILED":0,"_row":"2.30"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.004681 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_type_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_TYPE_CONCEPT_ID is present in the VISIT_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_type_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":46,"FAILED":0,"_row":"2.31"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"3.257747 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"provider_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PROVIDER_ID is present in the VISIT_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":47,"FAILED":0,"_row":"2.32"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.633350 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = care_site_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"care_site_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CARE_SITE_ID is present in the VISIT_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":48,"FAILED":0,"_row":"2.33"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.885641 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_SOURCE_VALUE is present in the VISIT_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":49,"FAILED":0,"_row":"2.34"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.902571 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_source_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_SOURCE_CONCEPT_ID is present in the VISIT_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_source_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":50,"FAILED":0,"_row":"2.35"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.518432 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = admitting_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"admitting_source_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if ADMITTING_SOURCE_CONCEPT_ID is present in the VISIT_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"admitting_source_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":51,"FAILED":0,"_row":"2.36"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.548773 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = admitting_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"admitting_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if ADMITTING_SOURCE_VALUE is present in the VISIT_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"admitting_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":52,"FAILED":0,"_row":"2.37"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.616752 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = discharge_to_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"discharge_to_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DISCHARGE_TO_CONCEPT_ID is present in the VISIT_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"discharge_to_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":53,"FAILED":0,"_row":"2.38"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.587637 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = discharge_to_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"discharge_to_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DISCHARGE_TO_SOURCE_VALUE is present in the VISIT_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"discharge_to_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":54,"FAILED":0,"_row":"2.39"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.503249 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = preceding_visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"preceding_visit_occurrence_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PRECEDING_VISIT_OCCURRENCE_ID is present in the VISIT_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"preceding_visit_occurrence_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":55,"FAILED":0,"_row":"2.40"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.817484 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"condition_occurrence_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CONDITION_OCCURRENCE_ID is present in the CONDITION_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_occurrence_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":56,"FAILED":0,"_row":"2.41"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.587345 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"person_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PERSON_ID is present in the CONDITION_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":57,"FAILED":0,"_row":"2.42"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.733022 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"condition_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CONDITION_CONCEPT_ID is present in the CONDITION_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":58,"FAILED":0,"_row":"2.43"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.671582 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"condition_start_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CONDITION_START_DATE is present in the CONDITION_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_start_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":59,"FAILED":0,"_row":"2.44"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.887686 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_start_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"condition_start_datetime\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CONDITION_START_DATETIME is present in the CONDITION_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_start_datetime","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":60,"FAILED":0,"_row":"2.45"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.963019 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"condition_end_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CONDITION_END_DATE is present in the CONDITION_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_end_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":61,"FAILED":0,"_row":"2.46"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.404510 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_end_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"condition_end_datetime\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CONDITION_END_DATETIME is present in the CONDITION_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_end_datetime","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":62,"FAILED":0,"_row":"2.47"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.418327 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"condition_type_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CONDITION_TYPE_CONCEPT_ID is present in the CONDITION_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_type_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":63,"FAILED":0,"_row":"2.48"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.757381 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_status_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"condition_status_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CONDITION_STATUS_CONCEPT_ID is present in the CONDITION_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_status_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":64,"FAILED":0,"_row":"2.49"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.847033 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = stop_reason\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"stop_reason\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if STOP_REASON is present in the CONDITION_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"stop_reason","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":65,"FAILED":0,"_row":"2.50"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.673170 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"provider_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PROVIDER_ID is present in the CONDITION_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":66,"FAILED":0,"_row":"2.51"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.533926 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_occurrence_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_OCCURRENCE_ID is present in the CONDITION_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":67,"FAILED":0,"_row":"2.52"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.760466 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = visit_detail_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_detail_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_DETAIL_ID is present in the CONDITION_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":68,"FAILED":0,"_row":"2.53"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.678573 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"condition_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CONDITION_SOURCE_VALUE is present in the CONDITION_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":69,"FAILED":0,"_row":"2.54"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.570937 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"condition_source_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CONDITION_SOURCE_CONCEPT_ID is present in the CONDITION_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_source_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":70,"FAILED":0,"_row":"2.55"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.956347 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_status_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"condition_status_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CONDITION_STATUS_SOURCE_VALUE is present in the CONDITION_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_status_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":71,"FAILED":0,"_row":"2.56"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.633139 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"drug_exposure_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DRUG_EXPOSURE_ID is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":72,"FAILED":0,"_row":"2.57"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.039495 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"person_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PERSON_ID is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":73,"FAILED":0,"_row":"2.58"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.603020 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"drug_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DRUG_CONCEPT_ID is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":74,"FAILED":0,"_row":"2.59"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.938670 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"drug_exposure_start_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DRUG_EXPOSURE_START_DATE is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_start_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":75,"FAILED":0,"_row":"2.60"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.229354 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_start_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"drug_exposure_start_datetime\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DRUG_EXPOSURE_START_DATETIME is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_start_datetime","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":76,"FAILED":0,"_row":"2.61"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.563573 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"drug_exposure_end_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DRUG_EXPOSURE_END_DATE is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_end_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":77,"FAILED":0,"_row":"2.62"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.638949 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_end_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"drug_exposure_end_datetime\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DRUG_EXPOSURE_END_DATETIME is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_end_datetime","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":78,"FAILED":0,"_row":"2.63"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.869085 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = verbatim_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"verbatim_end_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VERBATIM_END_DATE is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"verbatim_end_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":79,"FAILED":0,"_row":"2.64"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.648939 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"drug_type_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DRUG_TYPE_CONCEPT_ID is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_type_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":80,"FAILED":0,"_row":"2.65"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.819056 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = stop_reason\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"stop_reason\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if STOP_REASON is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"stop_reason","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":81,"FAILED":0,"_row":"2.66"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.335195 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = refills\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"refills\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if REFILLS is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"refills","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":82,"FAILED":0,"_row":"2.67"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.835428 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = quantity\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"quantity\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if QUANTITY is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"quantity","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":83,"FAILED":0,"_row":"2.68"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.840388 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = days_supply\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"days_supply\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DAYS_SUPPLY is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"days_supply","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":84,"FAILED":0,"_row":"2.69"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.549754 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = sig\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"sig\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if SIG is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"sig","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":85,"FAILED":0,"_row":"2.70"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.471336 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = route_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"route_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if ROUTE_CONCEPT_ID is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"route_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":86,"FAILED":0,"_row":"2.71"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.071682 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = lot_number\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"lot_number\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if LOT_NUMBER is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"lot_number","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":87,"FAILED":0,"_row":"2.72"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.503631 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"provider_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PROVIDER_ID is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":88,"FAILED":0,"_row":"2.73"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.609474 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_occurrence_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_OCCURRENCE_ID is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":89,"FAILED":0,"_row":"2.74"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.671521 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = visit_detail_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_detail_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_DETAIL_ID is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":90,"FAILED":0,"_row":"2.75"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.271819 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"drug_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DRUG_SOURCE_VALUE is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":91,"FAILED":0,"_row":"2.76"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.601699 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"drug_source_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DRUG_SOURCE_CONCEPT_ID is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_source_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":92,"FAILED":0,"_row":"2.77"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.886635 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = route_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"route_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if ROUTE_SOURCE_VALUE is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"route_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":93,"FAILED":0,"_row":"2.78"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.818212 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = dose_unit_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"dose_unit_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DOSE_UNIT_SOURCE_VALUE is present in the DRUG_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"dose_unit_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":94,"FAILED":0,"_row":"2.79"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.618538 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"procedure_occurrence_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PROCEDURE_OCCURRENCE_ID is present in the PROCEDURE_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_occurrence_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":95,"FAILED":0,"_row":"2.80"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.750779 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"person_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PERSON_ID is present in the PROCEDURE_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":96,"FAILED":0,"_row":"2.81"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.040742 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"procedure_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PROCEDURE_CONCEPT_ID is present in the PROCEDURE_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":97,"FAILED":0,"_row":"2.82"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.172215 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"procedure_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PROCEDURE_DATE is present in the PROCEDURE_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":98,"FAILED":0,"_row":"2.83"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.504223 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"procedure_datetime\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PROCEDURE_DATETIME is present in the PROCEDURE_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_datetime","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":99,"FAILED":0,"_row":"2.84"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.434024 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"procedure_type_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PROCEDURE_TYPE_CONCEPT_ID is present in the PROCEDURE_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_type_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":100,"FAILED":0,"_row":"2.85"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.650877 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = modifier_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"modifier_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if MODIFIER_CONCEPT_ID is present in the PROCEDURE_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"modifier_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":101,"FAILED":0,"_row":"2.86"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.947488 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = quantity\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"quantity\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if QUANTITY is present in the PROCEDURE_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"quantity","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":102,"FAILED":0,"_row":"2.87"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.631381 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"provider_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PROVIDER_ID is present in the PROCEDURE_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":103,"FAILED":0,"_row":"2.88"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.740780 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_occurrence_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_OCCURRENCE_ID is present in the PROCEDURE_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":104,"FAILED":0,"_row":"2.89"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.635065 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = visit_detail_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_detail_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_DETAIL_ID is present in the PROCEDURE_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":105,"FAILED":0,"_row":"2.90"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.098985 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"procedure_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PROCEDURE_SOURCE_VALUE is present in the PROCEDURE_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":106,"FAILED":0,"_row":"2.91"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.518546 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"procedure_source_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PROCEDURE_SOURCE_CONCEPT_ID is present in the PROCEDURE_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_source_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":107,"FAILED":0,"_row":"2.92"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.530068 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = modifier_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"modifier_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if MODIFIER_SOURCE_VALUE is present in the PROCEDURE_OCCURRENCE table as expected based on the specification. ","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"modifier_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":108,"FAILED":0,"_row":"2.93"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.658255 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"device_exposure_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DEVICE_EXPOSURE_ID is present in the DEVICE_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":109,"FAILED":0,"_row":"2.94"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.586475 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"person_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PERSON_ID is present in the DEVICE_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":110,"FAILED":0,"_row":"2.95"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.553439 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"device_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DEVICE_CONCEPT_ID is present in the DEVICE_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":111,"FAILED":0,"_row":"2.96"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.586873 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"device_exposure_start_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DEVICE_EXPOSURE_START_DATE is present in the DEVICE_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_start_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":112,"FAILED":0,"_row":"2.97"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.618552 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_start_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"device_exposure_start_datetime\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DEVICE_EXPOSURE_START_DATETIME is present in the DEVICE_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_start_datetime","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":113,"FAILED":0,"_row":"2.98"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.834169 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"device_exposure_end_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DEVICE_EXPOSURE_END_DATE is present in the DEVICE_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_end_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":114,"FAILED":0,"_row":"2.99"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.571051 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_end_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"device_exposure_end_datetime\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DEVICE_EXPOSURE_END_DATETIME is present in the DEVICE_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_end_datetime","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":115,"FAILED":0,"_row":"2.100"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.550367 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"device_type_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DEVICE_TYPE_CONCEPT_ID is present in the DEVICE_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_type_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":116,"FAILED":0,"_row":"2.101"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.433249 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = unique_device_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"unique_device_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if UNIQUE_DEVICE_ID is present in the DEVICE_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"unique_device_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":117,"FAILED":0,"_row":"2.102"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.418297 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = quantity\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"quantity\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if QUANTITY is present in the DEVICE_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"quantity","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":118,"FAILED":0,"_row":"2.103"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.618598 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"provider_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PROVIDER_ID is present in the DEVICE_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":119,"FAILED":0,"_row":"2.104"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.486750 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_occurrence_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_OCCURRENCE_ID is present in the DEVICE_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":120,"FAILED":0,"_row":"2.105"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.448013 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = visit_detail_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_detail_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_DETAIL_ID is present in the DEVICE_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":121,"FAILED":0,"_row":"2.106"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.718301 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"device_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DEVICE_SOURCE_VALUE is present in the DEVICE_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":122,"FAILED":0,"_row":"2.107"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.488159 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"device_source_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DEVICE_SOURCE_CONCEPT_ID is present in the DEVICE_EXPOSURE table as expected based on the specification. ","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_source_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":123,"FAILED":0,"_row":"2.108"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.545728 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"measurement_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if MEASUREMENT_ID is present in the MEASUREMENT table as expected based on the specification. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":124,"FAILED":0,"_row":"2.109"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.934725 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"person_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PERSON_ID is present in the MEASUREMENT table as expected based on the specification. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":125,"FAILED":0,"_row":"2.110"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.554280 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"measurement_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if MEASUREMENT_CONCEPT_ID is present in the MEASUREMENT table as expected based on the specification. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":126,"FAILED":0,"_row":"2.111"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.468596 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"measurement_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if MEASUREMENT_DATE is present in the MEASUREMENT table as expected based on the specification. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":127,"FAILED":0,"_row":"2.112"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.550024 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"measurement_datetime\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if MEASUREMENT_DATETIME is present in the MEASUREMENT table as expected based on the specification. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_datetime","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":128,"FAILED":0,"_row":"2.113"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.456845 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_time\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"measurement_time\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if MEASUREMENT_TIME is present in the MEASUREMENT table as expected based on the specification. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_time","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":129,"FAILED":0,"_row":"2.114"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.656896 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"measurement_type_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if MEASUREMENT_TYPE_CONCEPT_ID is present in the MEASUREMENT table as expected based on the specification. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_type_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":130,"FAILED":0,"_row":"2.115"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.488365 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = operator_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"operator_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if OPERATOR_CONCEPT_ID is present in the MEASUREMENT table as expected based on the specification. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"operator_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":131,"FAILED":0,"_row":"2.116"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.888015 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = value_as_number\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"value_as_number\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VALUE_AS_NUMBER is present in the MEASUREMENT table as expected based on the specification. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"value_as_number","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":132,"FAILED":0,"_row":"2.117"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.471234 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = value_as_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"value_as_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VALUE_AS_CONCEPT_ID is present in the MEASUREMENT table as expected based on the specification. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"value_as_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":133,"FAILED":0,"_row":"2.118"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.403379 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = unit_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"unit_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if UNIT_CONCEPT_ID is present in the MEASUREMENT table as expected based on the specification. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":134,"FAILED":0,"_row":"2.119"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.108414 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = range_low\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"range_low\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if RANGE_LOW is present in the MEASUREMENT table as expected based on the specification. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"range_low","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":135,"FAILED":0,"_row":"2.120"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.600294 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = range_high\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"range_high\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if RANGE_HIGH is present in the MEASUREMENT table as expected based on the specification. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"range_high","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":136,"FAILED":0,"_row":"2.121"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.470587 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"provider_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PROVIDER_ID is present in the MEASUREMENT table as expected based on the specification. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":137,"FAILED":0,"_row":"2.122"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.035361 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_occurrence_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_OCCURRENCE_ID is present in the MEASUREMENT table as expected based on the specification. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":138,"FAILED":0,"_row":"2.123"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.518546 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = visit_detail_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_detail_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_DETAIL_ID is present in the MEASUREMENT table as expected based on the specification. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":139,"FAILED":0,"_row":"2.124"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.087571 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"measurement_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if MEASUREMENT_SOURCE_VALUE is present in the MEASUREMENT table as expected based on the specification. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":140,"FAILED":0,"_row":"2.125"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.587584 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"measurement_source_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if MEASUREMENT_SOURCE_CONCEPT_ID is present in the MEASUREMENT table as expected based on the specification. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_source_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":141,"FAILED":0,"_row":"2.126"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.789290 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = unit_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"unit_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if UNIT_SOURCE_VALUE is present in the MEASUREMENT table as expected based on the specification. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"unit_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":142,"FAILED":0,"_row":"2.127"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.586590 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = value_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"value_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VALUE_SOURCE_VALUE is present in the MEASUREMENT table as expected based on the specification. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"value_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":143,"FAILED":0,"_row":"2.128"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.687421 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_detail_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_DETAIL_ID is present in the VISIT_DETAIL table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":144,"FAILED":0,"_row":"2.129"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.603453 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"person_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PERSON_ID is present in the VISIT_DETAIL table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":145,"FAILED":0,"_row":"2.130"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.486964 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_detail_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_DETAIL_CONCEPT_ID is present in the VISIT_DETAIL table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":146,"FAILED":0,"_row":"2.131"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.372210 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_detail_start_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_DETAIL_START_DATE is present in the VISIT_DETAIL table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_start_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":147,"FAILED":0,"_row":"2.132"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.509852 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_start_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_detail_start_datetime\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_DETAIL_START_DATETIME is present in the VISIT_DETAIL table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_start_datetime","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":148,"FAILED":0,"_row":"2.133"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.417830 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_detail_end_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_DETAIL_END_DATE is present in the VISIT_DETAIL table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_end_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":149,"FAILED":0,"_row":"2.134"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.772279 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_end_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_detail_end_datetime\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_DETAIL_END_DATETIME is present in the VISIT_DETAIL table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_end_datetime","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":150,"FAILED":0,"_row":"2.135"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.949760 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_detail_type_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_DETAIL_TYPE_CONCEPT_ID is present in the VISIT_DETAIL table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_type_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":151,"FAILED":0,"_row":"2.136"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.511447 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"provider_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PROVIDER_ID is present in the VISIT_DETAIL table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":152,"FAILED":0,"_row":"2.137"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.671641 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = care_site_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"care_site_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CARE_SITE_ID is present in the VISIT_DETAIL table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":153,"FAILED":0,"_row":"2.138"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.472310 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_detail_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_DETAIL_SOURCE_VALUE is present in the VISIT_DETAIL table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":154,"FAILED":0,"_row":"2.139"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.487035 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_detail_source_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_DETAIL_SOURCE_CONCEPT_ID is present in the VISIT_DETAIL table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_source_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":155,"FAILED":0,"_row":"2.140"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.519364 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = admitting_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"admitting_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if ADMITTING_SOURCE_VALUE is present in the VISIT_DETAIL table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"admitting_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":156,"FAILED":0,"_row":"2.141"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.618380 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = admitting_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"admitting_source_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if ADMITTING_SOURCE_CONCEPT_ID is present in the VISIT_DETAIL table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"admitting_source_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":157,"FAILED":0,"_row":"2.142"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.702972 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = discharge_to_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"discharge_to_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DISCHARGE_TO_SOURCE_VALUE is present in the VISIT_DETAIL table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"discharge_to_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":158,"FAILED":0,"_row":"2.143"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.789390 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = discharge_to_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"discharge_to_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DISCHARGE_TO_CONCEPT_ID is present in the VISIT_DETAIL table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"discharge_to_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":159,"FAILED":0,"_row":"2.144"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.671917 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = preceding_visit_detail_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"preceding_visit_detail_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PRECEDING_VISIT_DETAIL_ID is present in the VISIT_DETAIL table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"preceding_visit_detail_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":160,"FAILED":0,"_row":"2.145"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.586766 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_parent_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_detail_parent_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_DETAIL_PARENT_ID is present in the VISIT_DETAIL table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_parent_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":161,"FAILED":0,"_row":"2.146"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.471888 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_occurrence_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_OCCURRENCE_ID is present in the VISIT_DETAIL table as expected based on the specification. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":162,"FAILED":0,"_row":"2.147"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.503800 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"note_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if NOTE_ID is present in the NOTE table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":163,"FAILED":0,"_row":"2.148"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.724687 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"person_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PERSON_ID is present in the NOTE table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":164,"FAILED":0,"_row":"2.149"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.435238 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"note_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if NOTE_DATE is present in the NOTE table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":165,"FAILED":0,"_row":"2.150"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.560609 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"note_datetime\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if NOTE_DATETIME is present in the NOTE table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_datetime","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":166,"FAILED":0,"_row":"2.151"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.728558 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"note_type_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if NOTE_TYPE_CONCEPT_ID is present in the NOTE table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_type_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":167,"FAILED":0,"_row":"2.152"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.750025 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_class_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"note_class_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if NOTE_CLASS_CONCEPT_ID is present in the NOTE table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_class_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":168,"FAILED":0,"_row":"2.153"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.523771 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_title\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"note_title\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if NOTE_TITLE is present in the NOTE table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_title","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":169,"FAILED":0,"_row":"2.154"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.504083 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_text\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"note_text\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if NOTE_TEXT is present in the NOTE table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_text","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":170,"FAILED":0,"_row":"2.155"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.549167 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = encoding_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"encoding_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if ENCODING_CONCEPT_ID is present in the NOTE table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"encoding_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":171,"FAILED":0,"_row":"2.156"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.394697 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = language_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"language_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if LANGUAGE_CONCEPT_ID is present in the NOTE table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"language_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":172,"FAILED":0,"_row":"2.157"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.650403 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"provider_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PROVIDER_ID is present in the NOTE table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":173,"FAILED":0,"_row":"2.158"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.455743 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_occurrence_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_OCCURRENCE_ID is present in the NOTE table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":174,"FAILED":0,"_row":"2.159"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.540600 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = visit_detail_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_detail_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_DETAIL_ID is present in the NOTE table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":175,"FAILED":0,"_row":"2.160"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.533267 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"note_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if NOTE_SOURCE_VALUE is present in the NOTE table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":176,"FAILED":0,"_row":"2.161"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.589163 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = note_nlp_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"note_nlp_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if NOTE_NLP_ID is present in the NOTE_NLP table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"note_nlp_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":177,"FAILED":0,"_row":"2.162"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.683308 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = note_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"note_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if NOTE_ID is present in the NOTE_NLP table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"note_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":178,"FAILED":0,"_row":"2.163"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.824519 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = section_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"section_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if SECTION_CONCEPT_ID is present in the NOTE_NLP table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"section_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":179,"FAILED":0,"_row":"2.164"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.572171 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = snippet\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"snippet\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if SNIPPET is present in the NOTE_NLP table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"snippet","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":180,"FAILED":0,"_row":"2.165"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.410240 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = offset\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"offset\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if OFFSET is present in the NOTE_NLP table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"offset","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":181,"FAILED":0,"_row":"2.166"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.369059 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = lexical_variant\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"lexical_variant\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if LEXICAL_VARIANT is present in the NOTE_NLP table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"lexical_variant","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":182,"FAILED":0,"_row":"2.167"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.510464 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = note_nlp_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"note_nlp_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if NOTE_NLP_CONCEPT_ID is present in the NOTE_NLP table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"note_nlp_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":183,"FAILED":0,"_row":"2.168"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.824360 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = note_nlp_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"note_nlp_source_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if NOTE_NLP_SOURCE_CONCEPT_ID is present in the NOTE_NLP table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"note_nlp_source_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":184,"FAILED":0,"_row":"2.169"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.518608 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = nlp_system\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"nlp_system\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if NLP_SYSTEM is present in the NOTE_NLP table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"nlp_system","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":185,"FAILED":0,"_row":"2.170"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.741296 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = nlp_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"nlp_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if NLP_DATE is present in the NOTE_NLP table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"nlp_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":186,"FAILED":0,"_row":"2.171"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.771239 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = nlp_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"nlp_datetime\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if NLP_DATETIME is present in the NOTE_NLP table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"nlp_datetime","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":187,"FAILED":0,"_row":"2.172"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.570954 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = term_exists\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"term_exists\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if TERM_EXISTS is present in the NOTE_NLP table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"term_exists","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":188,"FAILED":0,"_row":"2.173"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.369875 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = term_temporal\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"term_temporal\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if TERM_TEMPORAL is present in the NOTE_NLP table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"term_temporal","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":189,"FAILED":0,"_row":"2.174"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.525230 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = term_modifiers\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"term_modifiers\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if TERM_MODIFIERS is present in the NOTE_NLP table as expected based on the specification. ","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"term_modifiers","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":190,"FAILED":0,"_row":"2.175"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.508396 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"observation_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if OBSERVATION_ID is present in the OBSERVATION table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":191,"FAILED":0,"_row":"2.176"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.719970 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"person_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PERSON_ID is present in the OBSERVATION table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":192,"FAILED":0,"_row":"2.177"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.518099 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"observation_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if OBSERVATION_CONCEPT_ID is present in the OBSERVATION table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":193,"FAILED":0,"_row":"2.178"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.671330 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"observation_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if OBSERVATION_DATE is present in the OBSERVATION table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":194,"FAILED":0,"_row":"2.179"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.556471 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"observation_datetime\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if OBSERVATION_DATETIME is present in the OBSERVATION table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_datetime","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":195,"FAILED":0,"_row":"2.180"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.568335 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"observation_type_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if OBSERVATION_TYPE_CONCEPT_ID is present in the OBSERVATION table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_type_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":196,"FAILED":0,"_row":"2.181"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.564073 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = value_as_number\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"value_as_number\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VALUE_AS_NUMBER is present in the OBSERVATION table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"value_as_number","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":197,"FAILED":0,"_row":"2.182"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.441402 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = value_as_string\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"value_as_string\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VALUE_AS_STRING is present in the OBSERVATION table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"value_as_string","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":198,"FAILED":0,"_row":"2.183"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.973735 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = value_as_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"value_as_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VALUE_AS_CONCEPT_ID is present in the OBSERVATION table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"value_as_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":199,"FAILED":0,"_row":"2.184"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.545650 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = qualifier_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"qualifier_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if QUALIFIER_CONCEPT_ID is present in the OBSERVATION table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"qualifier_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":200,"FAILED":0,"_row":"2.185"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.470154 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = unit_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"unit_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if UNIT_CONCEPT_ID is present in the OBSERVATION table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":201,"FAILED":0,"_row":"2.186"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.555808 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"provider_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PROVIDER_ID is present in the OBSERVATION table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":202,"FAILED":0,"_row":"2.187"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.567973 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_occurrence_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_OCCURRENCE_ID is present in the OBSERVATION table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":203,"FAILED":0,"_row":"2.188"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.518663 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = visit_detail_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"visit_detail_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if VISIT_DETAIL_ID is present in the OBSERVATION table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":204,"FAILED":0,"_row":"2.189"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.788211 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"observation_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if OBSERVATION_SOURCE_VALUE is present in the OBSERVATION table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":205,"FAILED":0,"_row":"2.190"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.487728 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"observation_source_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if OBSERVATION_SOURCE_CONCEPT_ID is present in the OBSERVATION table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_source_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":206,"FAILED":0,"_row":"2.191"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.203805 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = unit_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"unit_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if UNIT_SOURCE_VALUE is present in the OBSERVATION table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"unit_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":207,"FAILED":0,"_row":"2.192"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.549633 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = qualifier_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"qualifier_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if QUALIFIER_SOURCE_VALUE is present in the OBSERVATION table as expected based on the specification. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"qualifier_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":208,"FAILED":0,"_row":"2.193"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.449975 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"specimen_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.specimen cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if SPECIMEN_ID is present in the SPECIMEN table as expected based on the specification. ","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":209,"FAILED":0,"_row":"2.194"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.456128 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"person_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.specimen cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PERSON_ID is present in the SPECIMEN table as expected based on the specification. ","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":210,"FAILED":0,"_row":"2.195"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.756242 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"specimen_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.specimen cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if SPECIMEN_CONCEPT_ID is present in the SPECIMEN table as expected based on the specification. ","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":211,"FAILED":0,"_row":"2.196"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.702770 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"specimen_type_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.specimen cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if SPECIMEN_TYPE_CONCEPT_ID is present in the SPECIMEN table as expected based on the specification. ","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_type_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":212,"FAILED":0,"_row":"2.197"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.702713 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"specimen_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.specimen cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if SPECIMEN_DATE is present in the SPECIMEN table as expected based on the specification. ","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":213,"FAILED":0,"_row":"2.198"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.740638 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"specimen_datetime\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.specimen cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if SPECIMEN_DATETIME is present in the SPECIMEN table as expected based on the specification. ","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_datetime","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":214,"FAILED":0,"_row":"2.199"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.972764 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = quantity\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"quantity\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.specimen cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if QUANTITY is present in the SPECIMEN table as expected based on the specification. ","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"quantity","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":215,"FAILED":0,"_row":"2.200"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.649275 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = unit_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"unit_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.specimen cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if UNIT_CONCEPT_ID is present in the SPECIMEN table as expected based on the specification. ","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":216,"FAILED":0,"_row":"2.201"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.370636 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = anatomic_site_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"anatomic_site_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.specimen cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if ANATOMIC_SITE_CONCEPT_ID is present in the SPECIMEN table as expected based on the specification. ","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"anatomic_site_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":217,"FAILED":0,"_row":"2.202"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.840058 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = disease_status_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"disease_status_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.specimen cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DISEASE_STATUS_CONCEPT_ID is present in the SPECIMEN table as expected based on the specification. ","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"disease_status_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":218,"FAILED":0,"_row":"2.203"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.438743 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_source_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"specimen_source_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.specimen cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if SPECIMEN_SOURCE_ID is present in the SPECIMEN table as expected based on the specification. ","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_source_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":219,"FAILED":0,"_row":"2.204"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.496738 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"specimen_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.specimen cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if SPECIMEN_SOURCE_VALUE is present in the SPECIMEN table as expected based on the specification. ","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":220,"FAILED":0,"_row":"2.205"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.438773 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = unit_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"unit_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.specimen cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if UNIT_SOURCE_VALUE is present in the SPECIMEN table as expected based on the specification. ","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"unit_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":221,"FAILED":0,"_row":"2.206"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.386529 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = anatomic_site_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"anatomic_site_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.specimen cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if ANATOMIC_SITE_SOURCE_VALUE is present in the SPECIMEN table as expected based on the specification. ","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"anatomic_site_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":222,"FAILED":0,"_row":"2.207"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.720170 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = disease_status_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"disease_status_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.specimen cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DISEASE_STATUS_SOURCE_VALUE is present in the SPECIMEN table as expected based on the specification. ","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"disease_status_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":223,"FAILED":0,"_row":"2.208"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.905078 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = domain_concept_id_1\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"domain_concept_id_1\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DOMAIN_CONCEPT_ID_1 is present in the FACT_RELATIONSHIP table as expected based on the specification. ","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"domain_concept_id_1","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":224,"FAILED":0,"_row":"2.209"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.449066 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = fact_id_1\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"fact_id_1\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if FACT_ID_1 is present in the FACT_RELATIONSHIP table as expected based on the specification. ","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"fact_id_1","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":225,"FAILED":0,"_row":"2.210"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.417714 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = domain_concept_id_2\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"domain_concept_id_2\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DOMAIN_CONCEPT_ID_2 is present in the FACT_RELATIONSHIP table as expected based on the specification. ","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"domain_concept_id_2","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":226,"FAILED":0,"_row":"2.211"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.432993 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = fact_id_2\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"fact_id_2\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if FACT_ID_2 is present in the FACT_RELATIONSHIP table as expected based on the specification. ","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"fact_id_2","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":227,"FAILED":0,"_row":"2.212"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.618570 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = relationship_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"relationship_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if RELATIONSHIP_CONCEPT_ID is present in the FACT_RELATIONSHIP table as expected based on the specification. ","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"relationship_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":228,"FAILED":0,"_row":"2.213"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.486337 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = LOCATION\ncdmFieldName = location_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"location_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.location cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if LOCATION_ID is present in the LOCATION table as expected based on the specification. ","CDM_TABLE_NAME":"LOCATION","CDM_FIELD_NAME":"location_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":229,"FAILED":0,"_row":"2.214"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.802798 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = LOCATION\ncdmFieldName = address_1\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"address_1\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.location cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if ADDRESS_1 is present in the LOCATION table as expected based on the specification. ","CDM_TABLE_NAME":"LOCATION","CDM_FIELD_NAME":"address_1","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":230,"FAILED":0,"_row":"2.215"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.488318 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = LOCATION\ncdmFieldName = address_2\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"address_2\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.location cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if ADDRESS_2 is present in the LOCATION table as expected based on the specification. ","CDM_TABLE_NAME":"LOCATION","CDM_FIELD_NAME":"address_2","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":231,"FAILED":0,"_row":"2.216"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.541004 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = LOCATION\ncdmFieldName = city\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"city\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.location cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CITY is present in the LOCATION table as expected based on the specification. ","CDM_TABLE_NAME":"LOCATION","CDM_FIELD_NAME":"city","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":232,"FAILED":0,"_row":"2.217"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.749550 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = LOCATION\ncdmFieldName = state\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"state\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.location cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if STATE is present in the LOCATION table as expected based on the specification. ","CDM_TABLE_NAME":"LOCATION","CDM_FIELD_NAME":"state","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":233,"FAILED":0,"_row":"2.218"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.681230 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = LOCATION\ncdmFieldName = zip\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"zip\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.location cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if ZIP is present in the LOCATION table as expected based on the specification. ","CDM_TABLE_NAME":"LOCATION","CDM_FIELD_NAME":"zip","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":234,"FAILED":0,"_row":"2.219"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.650560 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = LOCATION\ncdmFieldName = county\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"county\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.location cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if COUNTY is present in the LOCATION table as expected based on the specification. ","CDM_TABLE_NAME":"LOCATION","CDM_FIELD_NAME":"county","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":235,"FAILED":0,"_row":"2.220"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.624728 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = LOCATION\ncdmFieldName = location_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"location_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.location cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if LOCATION_SOURCE_VALUE is present in the LOCATION table as expected based on the specification. ","CDM_TABLE_NAME":"LOCATION","CDM_FIELD_NAME":"location_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":236,"FAILED":0,"_row":"2.221"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.442364 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CARE_SITE\ncdmFieldName = care_site_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"care_site_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.care_site cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CARE_SITE_ID is present in the CARE_SITE table as expected based on the specification. ","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":237,"FAILED":0,"_row":"2.222"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.216566 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CARE_SITE\ncdmFieldName = care_site_name\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"care_site_name\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.care_site cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CARE_SITE_NAME is present in the CARE_SITE table as expected based on the specification. ","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"care_site_name","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":238,"FAILED":0,"_row":"2.223"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.468790 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CARE_SITE\ncdmFieldName = place_of_service_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"place_of_service_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.care_site cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PLACE_OF_SERVICE_CONCEPT_ID is present in the CARE_SITE table as expected based on the specification. ","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"place_of_service_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":239,"FAILED":0,"_row":"2.224"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.470872 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CARE_SITE\ncdmFieldName = location_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"location_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.care_site cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if LOCATION_ID is present in the CARE_SITE table as expected based on the specification. ","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"location_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":240,"FAILED":0,"_row":"2.225"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.552419 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CARE_SITE\ncdmFieldName = care_site_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"care_site_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.care_site cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CARE_SITE_SOURCE_VALUE is present in the CARE_SITE table as expected based on the specification. ","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"care_site_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":241,"FAILED":0,"_row":"2.226"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.509860 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CARE_SITE\ncdmFieldName = place_of_service_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"place_of_service_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.care_site cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PLACE_OF_SERVICE_SOURCE_VALUE is present in the CARE_SITE table as expected based on the specification. ","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"place_of_service_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":242,"FAILED":0,"_row":"2.227"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.604720 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"provider_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.provider cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PROVIDER_ID is present in the PROVIDER table as expected based on the specification. ","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":243,"FAILED":0,"_row":"2.228"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.403446 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = provider_name\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"provider_name\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.provider cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PROVIDER_NAME is present in the PROVIDER table as expected based on the specification. ","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"provider_name","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":244,"FAILED":0,"_row":"2.229"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.377155 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = npi\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"npi\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.provider cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if NPI is present in the PROVIDER table as expected based on the specification. ","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"npi","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":245,"FAILED":0,"_row":"2.230"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.850054 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = dea\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"dea\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.provider cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DEA is present in the PROVIDER table as expected based on the specification. ","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"dea","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":246,"FAILED":0,"_row":"2.231"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.403699 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = specialty_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"specialty_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.provider cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if SPECIALTY_CONCEPT_ID is present in the PROVIDER table as expected based on the specification. ","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"specialty_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":247,"FAILED":0,"_row":"2.232"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.901839 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = care_site_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"care_site_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.provider cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CARE_SITE_ID is present in the PROVIDER table as expected based on the specification. ","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":248,"FAILED":0,"_row":"2.233"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.487692 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = year_of_birth\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"year_of_birth\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.provider cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if YEAR_OF_BIRTH is present in the PROVIDER table as expected based on the specification. ","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"year_of_birth","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":249,"FAILED":0,"_row":"2.234"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.521189 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = gender_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"gender_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.provider cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if GENDER_CONCEPT_ID is present in the PROVIDER table as expected based on the specification. ","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"gender_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":250,"FAILED":0,"_row":"2.235"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.484384 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = provider_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"provider_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.provider cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PROVIDER_SOURCE_VALUE is present in the PROVIDER table as expected based on the specification. ","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"provider_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":251,"FAILED":0,"_row":"2.236"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.433765 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = specialty_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"specialty_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.provider cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if SPECIALTY_SOURCE_VALUE is present in the PROVIDER table as expected based on the specification. ","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"specialty_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":252,"FAILED":0,"_row":"2.237"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.534362 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = specialty_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"specialty_source_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.provider cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if SPECIALTY_SOURCE_CONCEPT_ID is present in the PROVIDER table as expected based on the specification. ","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"specialty_source_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":253,"FAILED":0,"_row":"2.238"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.787640 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = gender_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"gender_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.provider cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if GENDER_SOURCE_VALUE is present in the PROVIDER table as expected based on the specification. ","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"gender_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":254,"FAILED":0,"_row":"2.239"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.402923 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = gender_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"gender_source_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.provider cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if GENDER_SOURCE_CONCEPT_ID is present in the PROVIDER table as expected based on the specification. ","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"gender_source_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":255,"FAILED":0,"_row":"2.240"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.423974 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_plan_period_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"payer_plan_period_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PAYER_PLAN_PERIOD_ID is present in the PAYER_PLAN_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_plan_period_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":256,"FAILED":0,"_row":"2.241"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.435501 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"person_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PERSON_ID is present in the PAYER_PLAN_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":257,"FAILED":0,"_row":"2.242"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.524156 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_plan_period_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"payer_plan_period_start_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PAYER_PLAN_PERIOD_START_DATE is present in the PAYER_PLAN_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_plan_period_start_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":258,"FAILED":0,"_row":"2.243"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.603323 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_plan_period_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"payer_plan_period_end_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PAYER_PLAN_PERIOD_END_DATE is present in the PAYER_PLAN_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_plan_period_end_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":259,"FAILED":0,"_row":"2.244"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.540503 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"payer_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PAYER_CONCEPT_ID is present in the PAYER_PLAN_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":260,"FAILED":0,"_row":"2.245"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.416394 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"payer_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PAYER_SOURCE_VALUE is present in the PAYER_PLAN_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":261,"FAILED":0,"_row":"2.246"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.524511 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"payer_source_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PAYER_SOURCE_CONCEPT_ID is present in the PAYER_PLAN_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_source_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":262,"FAILED":0,"_row":"2.247"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.564865 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = plan_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"plan_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PLAN_CONCEPT_ID is present in the PAYER_PLAN_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"plan_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":263,"FAILED":0,"_row":"2.248"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.682747 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = plan_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"plan_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PLAN_SOURCE_VALUE is present in the PAYER_PLAN_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"plan_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":264,"FAILED":0,"_row":"2.249"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.719124 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = plan_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"plan_source_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PLAN_SOURCE_CONCEPT_ID is present in the PAYER_PLAN_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"plan_source_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":265,"FAILED":0,"_row":"2.250"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.454775 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = sponsor_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"sponsor_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if SPONSOR_CONCEPT_ID is present in the PAYER_PLAN_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"sponsor_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":266,"FAILED":0,"_row":"2.251"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.416898 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = sponsor_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"sponsor_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if SPONSOR_SOURCE_VALUE is present in the PAYER_PLAN_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"sponsor_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":267,"FAILED":0,"_row":"2.252"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.639599 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = sponsor_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"sponsor_source_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if SPONSOR_SOURCE_CONCEPT_ID is present in the PAYER_PLAN_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"sponsor_source_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":268,"FAILED":0,"_row":"2.253"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.502829 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = family_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"family_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if FAMILY_SOURCE_VALUE is present in the PAYER_PLAN_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"family_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":269,"FAILED":0,"_row":"2.254"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.500467 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = stop_reason_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"stop_reason_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if STOP_REASON_CONCEPT_ID is present in the PAYER_PLAN_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"stop_reason_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":270,"FAILED":0,"_row":"2.255"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.540920 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = stop_reason_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"stop_reason_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if STOP_REASON_SOURCE_VALUE is present in the PAYER_PLAN_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"stop_reason_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":271,"FAILED":0,"_row":"2.256"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.448750 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = stop_reason_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"stop_reason_source_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if STOP_REASON_SOURCE_CONCEPT_ID is present in the PAYER_PLAN_PERIOD table as expected based on the specification. ","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"stop_reason_source_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":272,"FAILED":0,"_row":"2.257"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.478187 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = cost_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"cost_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if COST_ID is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"cost_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":273,"FAILED":0,"_row":"2.258"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.703070 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = cost_event_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"cost_event_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if COST_EVENT_ID is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"cost_event_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":274,"FAILED":0,"_row":"2.259"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.594747 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = cost_domain_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"cost_domain_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if COST_DOMAIN_ID is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"cost_domain_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":275,"FAILED":0,"_row":"2.260"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.439794 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = cost_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"cost_type_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if COST_TYPE_CONCEPT_ID is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"cost_type_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":276,"FAILED":0,"_row":"2.261"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.614542 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = currency_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"currency_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CURRENCY_CONCEPT_ID is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"currency_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":277,"FAILED":0,"_row":"2.262"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.689657 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = total_charge\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"total_charge\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if TOTAL_CHARGE is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"total_charge","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":278,"FAILED":0,"_row":"2.263"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.330337 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = total_cost\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"total_cost\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if TOTAL_COST is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"total_cost","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":279,"FAILED":0,"_row":"2.264"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.450256 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = total_paid\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"total_paid\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if TOTAL_PAID is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"total_paid","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":280,"FAILED":0,"_row":"2.265"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.670398 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = paid_by_payer\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"paid_by_payer\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PAID_BY_PAYER is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"paid_by_payer","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":281,"FAILED":0,"_row":"2.266"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.505445 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = paid_by_patient\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"paid_by_patient\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PAID_BY_PATIENT is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"paid_by_patient","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":282,"FAILED":0,"_row":"2.267"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.505498 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = paid_patient_copay\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"paid_patient_copay\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PAID_PATIENT_COPAY is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"paid_patient_copay","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":283,"FAILED":0,"_row":"2.268"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.710971 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = paid_patient_coinsurance\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"paid_patient_coinsurance\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PAID_PATIENT_COINSURANCE is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"paid_patient_coinsurance","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":284,"FAILED":0,"_row":"2.269"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.587505 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = paid_patient_deductible\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"paid_patient_deductible\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PAID_PATIENT_DEDUCTIBLE is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"paid_patient_deductible","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":285,"FAILED":0,"_row":"2.270"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.619548 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = paid_by_primary\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"paid_by_primary\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PAID_BY_PRIMARY is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"paid_by_primary","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":286,"FAILED":0,"_row":"2.271"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.548390 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = paid_ingredient_cost\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"paid_ingredient_cost\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PAID_INGREDIENT_COST is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"paid_ingredient_cost","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":287,"FAILED":0,"_row":"2.272"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.578707 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = paid_dispensing_fee\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"paid_dispensing_fee\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PAID_DISPENSING_FEE is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"paid_dispensing_fee","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":288,"FAILED":0,"_row":"2.273"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.423669 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = payer_plan_period_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"payer_plan_period_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PAYER_PLAN_PERIOD_ID is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"payer_plan_period_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":289,"FAILED":0,"_row":"2.274"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.471310 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = amount_allowed\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"amount_allowed\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if AMOUNT_ALLOWED is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"amount_allowed","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":290,"FAILED":0,"_row":"2.275"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.689945 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = revenue_code_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"revenue_code_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if REVENUE_CODE_CONCEPT_ID is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"revenue_code_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":291,"FAILED":0,"_row":"2.276"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.789051 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = revenue_code_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"revenue_code_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if REVENUE_CODE_SOURCE_VALUE is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"revenue_code_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":292,"FAILED":0,"_row":"2.277"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.512043 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = drg_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"drg_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DRG_CONCEPT_ID is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"drg_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":293,"FAILED":0,"_row":"2.278"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.485438 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = drg_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"drg_source_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.cost cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DRG_SOURCE_VALUE is present in the COST table as expected based on the specification. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"drg_source_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":294,"FAILED":0,"_row":"2.279"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.586670 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_era_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"drug_era_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_era cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DRUG_ERA_ID is present in the DRUG_ERA table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_era_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":295,"FAILED":0,"_row":"2.280"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.379355 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"person_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_era cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PERSON_ID is present in the DRUG_ERA table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":296,"FAILED":0,"_row":"2.281"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.425798 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"drug_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_era cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DRUG_CONCEPT_ID is present in the DRUG_ERA table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":297,"FAILED":0,"_row":"2.282"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.883391 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_era_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"drug_era_start_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_era cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DRUG_ERA_START_DATE is present in the DRUG_ERA table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_era_start_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":298,"FAILED":0,"_row":"2.283"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.765099 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_era_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"drug_era_end_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_era cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DRUG_ERA_END_DATE is present in the DRUG_ERA table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_era_end_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":299,"FAILED":0,"_row":"2.284"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.564328 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_exposure_count\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"drug_exposure_count\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_era cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DRUG_EXPOSURE_COUNT is present in the DRUG_ERA table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_exposure_count","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":300,"FAILED":0,"_row":"2.285"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.040687 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = gap_days\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"gap_days\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.drug_era cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if GAP_DAYS is present in the DRUG_ERA table as expected based on the specification. ","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"gap_days","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":301,"FAILED":0,"_row":"2.286"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.785351 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_era_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"dose_era_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.dose_era cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DOSE_ERA_ID is present in the DOSE_ERA table as expected based on the specification. ","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_era_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":302,"FAILED":0,"_row":"2.287"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.555881 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"person_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.dose_era cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PERSON_ID is present in the DOSE_ERA table as expected based on the specification. ","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":303,"FAILED":0,"_row":"2.288"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.549114 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = drug_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"drug_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.dose_era cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DRUG_CONCEPT_ID is present in the DOSE_ERA table as expected based on the specification. ","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":304,"FAILED":0,"_row":"2.289"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.527086 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = unit_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"unit_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.dose_era cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if UNIT_CONCEPT_ID is present in the DOSE_ERA table as expected based on the specification. ","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":305,"FAILED":0,"_row":"2.290"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.542733 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"dose_value\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.dose_era cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DOSE_VALUE is present in the DOSE_ERA table as expected based on the specification. ","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_value","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":306,"FAILED":0,"_row":"2.291"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.750156 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_era_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"dose_era_start_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.dose_era cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DOSE_ERA_START_DATE is present in the DOSE_ERA table as expected based on the specification. ","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_era_start_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":307,"FAILED":0,"_row":"2.292"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.740530 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_era_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"dose_era_end_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.dose_era cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if DOSE_ERA_END_DATE is present in the DOSE_ERA table as expected based on the specification. ","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_era_end_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":308,"FAILED":0,"_row":"2.293"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.617426 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_era_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"condition_era_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_era cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CONDITION_ERA_ID is present in the CONDITION_ERA table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_era_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":309,"FAILED":0,"_row":"2.294"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.534027 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"person_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_era cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if PERSON_ID is present in the CONDITION_ERA table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":310,"FAILED":0,"_row":"2.295"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.518129 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"condition_concept_id\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_era cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CONDITION_CONCEPT_ID is present in the CONDITION_ERA table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_concept_id","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":311,"FAILED":0,"_row":"2.296"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.603246 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_era_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"condition_era_start_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_era cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CONDITION_ERA_START_DATE is present in the CONDITION_ERA table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_era_start_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":312,"FAILED":0,"_row":"2.297"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.455303 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_era_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"condition_era_end_date\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_era cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CONDITION_ERA_END_DATE is present in the CONDITION_ERA table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_era_end_date","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":313,"FAILED":0,"_row":"2.298"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.921230 secs","QUERY_TEXT":"\n/*********\nFIELD LEVEL check:\nCDM_FIELD - verify the field exists\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_occurrence_count\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n  select num_violated_rows from\n  (\n    select\n      case when COUNT(\"condition_occurrence_count\") = 0 then 0\n      else 0\n    end as num_violated_rows\n    from mimiciv_demo_current_cdm_531.condition_era cdmtable\n  ) violated_rows\n) violated_row_count,\n( \n\tselect 1 as num_rows\n) denominator\n;","CHECK_NAME":"cdmField","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if CONDITION_OCCURRENCE_COUNT is present in the CONDITION_ERA table as expected based on the specification. ","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_occurrence_count","SQL_FILE":"field_cdm_field.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":314,"FAILED":0,"_row":"2.299"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.602634 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t  \n\t\t where cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the PERSON that is considered not nullable.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":315,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.1"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.488263 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = gender_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.gender_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t  \n\t\t where cdmtable.gender_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the GENDER_CONCEPT_ID of the PERSON that is considered not nullable.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"gender_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":316,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.2"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.003120 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = year_of_birth\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.year_of_birth' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t  \n\t\t where cdmtable.year_of_birth is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the YEAR_OF_BIRTH of the PERSON that is considered not nullable.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"year_of_birth","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":317,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.3"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.571050 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = race_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.race_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t  \n\t\t where cdmtable.race_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the RACE_CONCEPT_ID of the PERSON that is considered not nullable.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"race_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":318,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.4"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.786809 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = ethnicity_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.ethnicity_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t  \n\t\t where cdmtable.ethnicity_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the ETHNICITY_CONCEPT_ID of the PERSON that is considered not nullable.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"ethnicity_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":319,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.5"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.471694 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = observation_period_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.observation_period_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\t  \n\t\t where cdmtable.observation_period_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the OBSERVATION_PERIOD_ID of the OBSERVATION_PERIOD that is considered not nullable.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"observation_period_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":320,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.6"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.672131 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\t  \n\t\t where cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the OBSERVATION_PERIOD that is considered not nullable.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":321,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.7"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.687862 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = observation_period_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.observation_period_start_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\t  \n\t\t where cdmtable.observation_period_start_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the OBSERVATION_PERIOD_START_DATE of the OBSERVATION_PERIOD that is considered not nullable.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"observation_period_start_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":322,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.8"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.257860 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = observation_period_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.observation_period_end_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\t  \n\t\t where cdmtable.observation_period_end_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the OBSERVATION_PERIOD_END_DATE of the OBSERVATION_PERIOD that is considered not nullable.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"observation_period_end_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":323,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.9"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.634751 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = period_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.period_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\t  \n\t\t where cdmtable.period_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERIOD_TYPE_CONCEPT_ID of the OBSERVATION_PERIOD that is considered not nullable.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"period_type_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":324,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.10"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.771019 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_occurrence_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t  \n\t\t where cdmtable.visit_occurrence_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_OCCURRENCE_ID of the VISIT_OCCURRENCE that is considered not nullable.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":325,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.11"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.602911 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t  \n\t\t where cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the VISIT_OCCURRENCE that is considered not nullable.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":326,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.12"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.707760 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t  \n\t\t where cdmtable.visit_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_CONCEPT_ID of the VISIT_OCCURRENCE that is considered not nullable.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":327,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.13"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.468618 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_start_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t  \n\t\t where cdmtable.visit_start_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_START_DATE of the VISIT_OCCURRENCE that is considered not nullable.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_start_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":328,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.14"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.502616 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_end_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t  \n\t\t where cdmtable.visit_end_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_END_DATE of the VISIT_OCCURRENCE that is considered not nullable.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_end_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":329,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.15"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.772470 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t  \n\t\t where cdmtable.visit_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_TYPE_CONCEPT_ID of the VISIT_OCCURRENCE that is considered not nullable.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_type_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":330,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.16"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.671683 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_occurrence_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t  \n\t\t where cdmtable.condition_occurrence_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_OCCURRENCE_ID of the CONDITION_OCCURRENCE that is considered not nullable.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_occurrence_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":331,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.17"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"3.186388 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t  \n\t\t where cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the CONDITION_OCCURRENCE that is considered not nullable.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":332,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.18"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.804736 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t  \n\t\t where cdmtable.condition_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_CONCEPT_ID of the CONDITION_OCCURRENCE that is considered not nullable.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":333,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.19"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.515408 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_start_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t  \n\t\t where cdmtable.condition_start_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_START_DATE of the CONDITION_OCCURRENCE that is considered not nullable.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_start_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":334,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.20"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.943179 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t  \n\t\t where cdmtable.condition_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_TYPE_CONCEPT_ID of the CONDITION_OCCURRENCE that is considered not nullable.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_type_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":335,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.21"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.418182 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t  \n\t\t where cdmtable.drug_exposure_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_EXPOSURE_ID of the DRUG_EXPOSURE that is considered not nullable.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":336,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.22"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.687942 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t  \n\t\t where cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the DRUG_EXPOSURE that is considered not nullable.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":337,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.23"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.451103 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t  \n\t\t where cdmtable.drug_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_CONCEPT_ID of the DRUG_EXPOSURE that is considered not nullable.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":338,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.24"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.623700 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_start_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t  \n\t\t where cdmtable.drug_exposure_start_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_EXPOSURE_START_DATE of the DRUG_EXPOSURE that is considered not nullable.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_start_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":339,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.25"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.554795 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_end_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t  \n\t\t where cdmtable.drug_exposure_end_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_EXPOSURE_END_DATE of the DRUG_EXPOSURE that is considered not nullable.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_end_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":340,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.26"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.733158 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t  \n\t\t where cdmtable.drug_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_TYPE_CONCEPT_ID of the DRUG_EXPOSURE that is considered not nullable.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_type_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":341,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.27"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.970643 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_occurrence_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t  \n\t\t where cdmtable.procedure_occurrence_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROCEDURE_OCCURRENCE_ID of the PROCEDURE_OCCURRENCE that is considered not nullable.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_occurrence_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":342,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.28"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.822384 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t  \n\t\t where cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the PROCEDURE_OCCURRENCE that is considered not nullable.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":343,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.29"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"2.125754 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t  \n\t\t where cdmtable.procedure_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROCEDURE_CONCEPT_ID of the PROCEDURE_OCCURRENCE that is considered not nullable.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":344,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.30"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.697922 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t  \n\t\t where cdmtable.procedure_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROCEDURE_DATE of the PROCEDURE_OCCURRENCE that is considered not nullable.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":345,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.31"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.865920 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t  \n\t\t where cdmtable.procedure_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROCEDURE_TYPE_CONCEPT_ID of the PROCEDURE_OCCURRENCE that is considered not nullable.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_type_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":346,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.32"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"2.287994 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t  \n\t\t where cdmtable.device_exposure_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DEVICE_EXPOSURE_ID of the DEVICE_EXPOSURE that is considered not nullable.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":347,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.33"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.489609 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t  \n\t\t where cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the DEVICE_EXPOSURE that is considered not nullable.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":348,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.34"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.569695 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t  \n\t\t where cdmtable.device_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DEVICE_CONCEPT_ID of the DEVICE_EXPOSURE that is considered not nullable.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":349,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.35"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.844629 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_start_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t  \n\t\t where cdmtable.device_exposure_start_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DEVICE_EXPOSURE_START_DATE of the DEVICE_EXPOSURE that is considered not nullable.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_start_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":350,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.36"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.818537 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t  \n\t\t where cdmtable.device_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DEVICE_TYPE_CONCEPT_ID of the DEVICE_EXPOSURE that is considered not nullable.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_type_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":351,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.37"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.571608 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t  \n\t\t where cdmtable.measurement_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the MEASUREMENT_ID of the MEASUREMENT that is considered not nullable.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":352,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.38"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.719650 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t  \n\t\t where cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the MEASUREMENT that is considered not nullable.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":353,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.39"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"2.010999 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t  \n\t\t where cdmtable.measurement_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the MEASUREMENT_CONCEPT_ID of the MEASUREMENT that is considered not nullable.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":354,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.40"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.454251 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t  \n\t\t where cdmtable.measurement_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the MEASUREMENT_DATE of the MEASUREMENT that is considered not nullable.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":355,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.41"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.784779 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t  \n\t\t where cdmtable.measurement_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the MEASUREMENT_TYPE_CONCEPT_ID of the MEASUREMENT that is considered not nullable.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_type_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":356,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.42"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.555477 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t  \n\t\t where cdmtable.visit_detail_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_ID of the VISIT_DETAIL that is considered not nullable.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":357,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.43"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.767183 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t  \n\t\t where cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the VISIT_DETAIL that is considered not nullable.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":358,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.44"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.950329 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t  \n\t\t where cdmtable.visit_detail_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_CONCEPT_ID of the VISIT_DETAIL that is considered not nullable.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":359,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.45"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.979815 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_start_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t  \n\t\t where cdmtable.visit_detail_start_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_START_DATE of the VISIT_DETAIL that is considered not nullable.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_start_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":360,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.46"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.816432 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_end_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t  \n\t\t where cdmtable.visit_detail_end_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_END_DATE of the VISIT_DETAIL that is considered not nullable.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_end_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":361,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.47"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.562727 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t  \n\t\t where cdmtable.visit_detail_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_TYPE_CONCEPT_ID of the VISIT_DETAIL that is considered not nullable.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_type_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":362,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.48"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"2.015525 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_occurrence_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t  \n\t\t where cdmtable.visit_occurrence_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_OCCURRENCE_ID of the VISIT_DETAIL that is considered not nullable.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":363,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.49"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.299937 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t  \n\t\t where cdmtable.note_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NOTE_ID of the NOTE that is considered not nullable.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":364,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.50"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.590632 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t  \n\t\t where cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the NOTE that is considered not nullable.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":365,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.51"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.551128 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t  \n\t\t where cdmtable.note_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NOTE_DATE of the NOTE that is considered not nullable.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":366,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.52"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.822919 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t  \n\t\t where cdmtable.note_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NOTE_TYPE_CONCEPT_ID of the NOTE that is considered not nullable.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_type_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":367,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.53"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.618383 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_class_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_class_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t  \n\t\t where cdmtable.note_class_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NOTE_CLASS_CONCEPT_ID of the NOTE that is considered not nullable.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_class_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":368,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.54"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.780830 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_text\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_text' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t  \n\t\t where cdmtable.note_text is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NOTE_TEXT of the NOTE that is considered not nullable.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_text","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":369,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.55"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.962708 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = encoding_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.encoding_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t  \n\t\t where cdmtable.encoding_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the ENCODING_CONCEPT_ID of the NOTE that is considered not nullable.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"encoding_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":370,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.56"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.849674 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = language_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.language_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t  \n\t\t where cdmtable.language_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the LANGUAGE_CONCEPT_ID of the NOTE that is considered not nullable.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"language_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":371,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.57"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.459022 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = note_nlp_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.note_nlp_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t  \n\t\t where cdmtable.note_nlp_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NOTE_NLP_ID of the NOTE_NLP that is considered not nullable.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"note_nlp_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":372,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.58"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.566175 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = note_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.note_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t  \n\t\t where cdmtable.note_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NOTE_ID of the NOTE_NLP that is considered not nullable.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"note_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":373,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.59"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.749423 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = lexical_variant\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.lexical_variant' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t  \n\t\t where cdmtable.lexical_variant is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the LEXICAL_VARIANT of the NOTE_NLP that is considered not nullable.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"lexical_variant","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":374,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.60"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.880752 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = nlp_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.nlp_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t  \n\t\t where cdmtable.nlp_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NLP_DATE of the NOTE_NLP that is considered not nullable.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"nlp_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":375,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.61"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.402748 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t  \n\t\t where cdmtable.observation_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the OBSERVATION_ID of the OBSERVATION that is considered not nullable.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":376,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.62"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.687769 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t  \n\t\t where cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the OBSERVATION that is considered not nullable.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":377,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.63"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.818527 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t  \n\t\t where cdmtable.observation_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the OBSERVATION_CONCEPT_ID of the OBSERVATION that is considered not nullable.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":378,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.64"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.856300 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t  \n\t\t where cdmtable.observation_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the OBSERVATION_DATE of the OBSERVATION that is considered not nullable.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":379,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.65"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.585851 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t  \n\t\t where cdmtable.observation_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the OBSERVATION_TYPE_CONCEPT_ID of the OBSERVATION that is considered not nullable.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_type_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":380,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.66"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"2.790659 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t  \n\t\t where cdmtable.specimen_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the SPECIMEN_ID of the SPECIMEN that is considered not nullable.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":381,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.67"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.829468 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t  \n\t\t where cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the SPECIMEN that is considered not nullable.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":382,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.68"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.945639 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t  \n\t\t where cdmtable.specimen_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the SPECIMEN_CONCEPT_ID of the SPECIMEN that is considered not nullable.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":383,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.69"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.687516 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t  \n\t\t where cdmtable.specimen_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the SPECIMEN_TYPE_CONCEPT_ID of the SPECIMEN that is considered not nullable.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_type_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":384,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.70"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.871434 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t  \n\t\t where cdmtable.specimen_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the SPECIMEN_DATE of the SPECIMEN that is considered not nullable.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":385,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.71"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"1.934303 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = domain_concept_id_1\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.domain_concept_id_1' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t  \n\t\t where cdmtable.domain_concept_id_1 is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DOMAIN_CONCEPT_ID_1 of the FACT_RELATIONSHIP that is considered not nullable.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"domain_concept_id_1","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":386,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.72"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"1.825984 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = fact_id_1\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.fact_id_1' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t  \n\t\t where cdmtable.fact_id_1 is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the FACT_ID_1 of the FACT_RELATIONSHIP that is considered not nullable.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"fact_id_1","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":387,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.73"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"2.351326 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = domain_concept_id_2\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.domain_concept_id_2' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t  \n\t\t where cdmtable.domain_concept_id_2 is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DOMAIN_CONCEPT_ID_2 of the FACT_RELATIONSHIP that is considered not nullable.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"domain_concept_id_2","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":388,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.74"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"3.151146 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = fact_id_2\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.fact_id_2' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t  \n\t\t where cdmtable.fact_id_2 is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the FACT_ID_2 of the FACT_RELATIONSHIP that is considered not nullable.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"fact_id_2","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":389,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.75"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"1.468227 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = relationship_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.relationship_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t  \n\t\t where cdmtable.relationship_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the RELATIONSHIP_CONCEPT_ID of the FACT_RELATIONSHIP that is considered not nullable.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"relationship_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":390,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.76"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.672334 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = LOCATION\ncdmFieldName = location_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'LOCATION.location_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.location cdmtable\n\t\t  \n\t\t where cdmtable.location_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.location cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the LOCATION_ID of the LOCATION that is considered not nullable.","CDM_TABLE_NAME":"LOCATION","CDM_FIELD_NAME":"location_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":391,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.77"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":31,"EXECUTION_TIME":"1.556042 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CARE_SITE\ncdmFieldName = care_site_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CARE_SITE.care_site_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\t  \n\t\t where cdmtable.care_site_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CARE_SITE_ID of the CARE_SITE that is considered not nullable.","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":392,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.78"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.805752 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.provider_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t  \n\t\t where cdmtable.provider_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROVIDER_ID of the PROVIDER that is considered not nullable.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":393,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.79"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803615 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_plan_period_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.payer_plan_period_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t  \n\t\t where cdmtable.payer_plan_period_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PAYER_PLAN_PERIOD_ID of the PAYER_PLAN_PERIOD that is considered not nullable.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_plan_period_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":394,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.80"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.418276 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t  \n\t\t where cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the PAYER_PLAN_PERIOD that is considered not nullable.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":395,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.81"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.718800 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_plan_period_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.payer_plan_period_start_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t  \n\t\t where cdmtable.payer_plan_period_start_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PAYER_PLAN_PERIOD_START_DATE of the PAYER_PLAN_PERIOD that is considered not nullable.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_plan_period_start_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":396,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.82"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819168 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_plan_period_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.payer_plan_period_end_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t  \n\t\t where cdmtable.payer_plan_period_end_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PAYER_PLAN_PERIOD_END_DATE of the PAYER_PLAN_PERIOD that is considered not nullable.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_plan_period_end_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":397,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.83"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.516831 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = cost_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.cost_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t  \n\t\t where cdmtable.cost_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the COST_ID of the COST that is considered not nullable.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"cost_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":398,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.84"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.947218 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = cost_event_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.cost_event_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t  \n\t\t where cdmtable.cost_event_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the COST_EVENT_ID of the COST that is considered not nullable.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"cost_event_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":399,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.85"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.866505 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = cost_domain_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.cost_domain_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t  \n\t\t where cdmtable.cost_domain_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the COST_DOMAIN_ID of the COST that is considered not nullable.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"cost_domain_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":400,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.86"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.451948 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = cost_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.cost_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t  \n\t\t where cdmtable.cost_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the COST_TYPE_CONCEPT_ID of the COST that is considered not nullable.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"cost_type_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":401,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.87"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.902950 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_era_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_era_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t  \n\t\t where cdmtable.drug_era_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_ERA_ID of the DRUG_ERA that is considered not nullable.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_era_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":402,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.88"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.865926 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t  \n\t\t where cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the DRUG_ERA that is considered not nullable.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":403,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.89"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.826079 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t  \n\t\t where cdmtable.drug_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_CONCEPT_ID of the DRUG_ERA that is considered not nullable.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":404,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.90"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.851078 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_era_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_era_start_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t  \n\t\t where cdmtable.drug_era_start_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_ERA_START_DATE of the DRUG_ERA that is considered not nullable.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_era_start_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":405,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.91"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.865634 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_era_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_era_end_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t  \n\t\t where cdmtable.drug_era_end_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_ERA_END_DATE of the DRUG_ERA that is considered not nullable.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_era_end_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":406,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.92"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"1.806320 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_era_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.dose_era_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t  \n\t\t where cdmtable.dose_era_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DOSE_ERA_ID of the DOSE_ERA that is considered not nullable.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_era_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":407,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.93"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"1.796780 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t  \n\t\t where cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the DOSE_ERA that is considered not nullable.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":408,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.94"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"1.802724 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = drug_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.drug_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t  \n\t\t where cdmtable.drug_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_CONCEPT_ID of the DOSE_ERA that is considered not nullable.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":409,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.95"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"1.571443 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = unit_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.unit_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t  \n\t\t where cdmtable.unit_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the UNIT_CONCEPT_ID of the DOSE_ERA that is considered not nullable.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":410,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.96"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"1.502904 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.dose_value' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t  \n\t\t where cdmtable.dose_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DOSE_VALUE of the DOSE_ERA that is considered not nullable.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_value","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":411,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.97"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"2.236521 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_era_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.dose_era_start_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t  \n\t\t where cdmtable.dose_era_start_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DOSE_ERA_START_DATE of the DOSE_ERA that is considered not nullable.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_era_start_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":412,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.98"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"1.817277 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_era_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.dose_era_end_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t  \n\t\t where cdmtable.dose_era_end_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DOSE_ERA_END_DATE of the DOSE_ERA that is considered not nullable.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_era_end_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":413,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.99"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"1.734386 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_era_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_era_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t  \n\t\t where cdmtable.condition_era_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_ERA_ID of the CONDITION_ERA that is considered not nullable.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_era_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":414,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.100"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"1.587270 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t  \n\t\t where cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the CONDITION_ERA that is considered not nullable.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":415,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.101"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"1.888230 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t  \n\t\t where cdmtable.condition_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_CONCEPT_ID of the CONDITION_ERA that is considered not nullable.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_concept_id","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":416,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.102"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"1.603946 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_era_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_era_start_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t  \n\t\t where cdmtable.condition_era_start_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_ERA_START_DATE of the CONDITION_ERA that is considered not nullable.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_era_start_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":417,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.103"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"1.472015 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_NOT_NULLABLE\n\nFor each table, check that the fields in which IS_NOT_NULLABLE == TRUE, there are no null values in that field.\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_era_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_era_end_date' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t  \n\t\t where cdmtable.condition_era_end_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isRequired","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_ERA_END_DATE of the CONDITION_ERA that is considered not nullable.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_era_end_date","SQL_FILE":"field_is_not_nullable.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Validation","checkId":418,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"3.104"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.418391 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = person_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.person_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.person_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PERSON_ID in the PERSON is the expected data type based on the specification.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":419,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.1"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.803133 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = gender_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.gender_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.gender_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.gender_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the GENDER_CONCEPT_ID in the PERSON is the expected data type based on the specification.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"gender_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":420,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.2"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.819223 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = year_of_birth\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.year_of_birth' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.year_of_birth) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.year_of_birth is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the YEAR_OF_BIRTH in the PERSON is the expected data type based on the specification.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"year_of_birth","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":421,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.3"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.734583 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = month_of_birth\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.month_of_birth' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.month_of_birth) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.month_of_birth is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the MONTH_OF_BIRTH in the PERSON is the expected data type based on the specification.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"month_of_birth","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":422,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.4"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.639388 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = day_of_birth\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.day_of_birth' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.day_of_birth) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.day_of_birth is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the DAY_OF_BIRTH in the PERSON is the expected data type based on the specification.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"day_of_birth","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":423,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.5"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.460195 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = race_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.race_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.race_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.race_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the RACE_CONCEPT_ID in the PERSON is the expected data type based on the specification.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"race_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":424,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.6"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.656065 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = ethnicity_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.ethnicity_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.ethnicity_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.ethnicity_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the ETHNICITY_CONCEPT_ID in the PERSON is the expected data type based on the specification.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"ethnicity_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":425,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.7"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.439390 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = location_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.location_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.location_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.location_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the LOCATION_ID in the PERSON is the expected data type based on the specification.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"location_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":426,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.8"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.430304 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = provider_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.provider_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.provider_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.provider_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PROVIDER_ID in the PERSON is the expected data type based on the specification.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":427,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.9"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.726651 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = care_site_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.care_site_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.care_site_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.care_site_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the CARE_SITE_ID in the PERSON is the expected data type based on the specification.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":428,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.10"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.172579 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = observation_period_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.observation_period_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.observation_period_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.observation_period_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the OBSERVATION_PERIOD_ID in the OBSERVATION_PERIOD is the expected data type based on the specification.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"observation_period_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":429,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.11"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.855258 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = person_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.person_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.person_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PERSON_ID in the OBSERVATION_PERIOD is the expected data type based on the specification.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":430,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.12"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.486510 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_occurrence_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_occurrence_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.visit_occurrence_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.visit_occurrence_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the VISIT_OCCURRENCE_ID in the VISIT_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":431,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.13"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.271303 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = person_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.person_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.person_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PERSON_ID in the VISIT_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":432,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.14"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.873419 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.visit_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.visit_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the VISIT_CONCEPT_ID in the VISIT_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":433,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.15"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.826610 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = provider_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.provider_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.provider_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.provider_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PROVIDER_ID in the VISIT_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":434,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.16"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.685007 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = care_site_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.care_site_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.care_site_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.care_site_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the CARE_SITE_ID in the VISIT_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":435,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.17"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.374700 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_source_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_source_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.visit_source_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.visit_source_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the VISIT_SOURCE_CONCEPT_ID in the VISIT_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_source_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":436,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.18"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.557529 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = admitting_source_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.admitting_source_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.admitting_source_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.admitting_source_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the ADMITTING_SOURCE_CONCEPT_ID in the VISIT_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"admitting_source_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":437,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.19"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.319677 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = discharge_to_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.discharge_to_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.discharge_to_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.discharge_to_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the DISCHARGE_TO_CONCEPT_ID in the VISIT_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"discharge_to_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":438,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.20"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.470289 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = preceding_visit_occurrence_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.preceding_visit_occurrence_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.preceding_visit_occurrence_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.preceding_visit_occurrence_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PRECEDING_VISIT_OCCURRENCE_ID in the VISIT_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"preceding_visit_occurrence_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":439,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.21"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.840641 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.condition_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.condition_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the CONDITION_CONCEPT_ID in the CONDITION_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":440,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.22"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.851031 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_type_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.condition_type_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.condition_type_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the CONDITION_TYPE_CONCEPT_ID in the CONDITION_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_type_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":441,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.23"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.987764 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_status_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_status_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.condition_status_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.condition_status_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the CONDITION_STATUS_CONCEPT_ID in the CONDITION_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_status_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":442,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.24"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.889190 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = provider_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.provider_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.provider_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.provider_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PROVIDER_ID in the CONDITION_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":443,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.25"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"2.116386 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = visit_occurrence_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.visit_occurrence_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.visit_occurrence_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.visit_occurrence_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the VISIT_OCCURRENCE_ID in the CONDITION_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":444,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.26"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.571686 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = visit_detail_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.visit_detail_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.visit_detail_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.visit_detail_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the VISIT_DETAIL_ID in the CONDITION_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":445,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.27"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.856331 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_source_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_source_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.condition_source_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.condition_source_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the CONDITION_SOURCE_CONCEPT_ID in the CONDITION_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_source_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":446,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.28"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.834306 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.drug_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.drug_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the DRUG_CONCEPT_ID in the DRUG_EXPOSURE is the expected data type based on the specification.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":447,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.29"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.072295 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_type_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.drug_type_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.drug_type_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the DRUG_TYPE_CONCEPT_ID in the DRUG_EXPOSURE is the expected data type based on the specification.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_type_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":448,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.30"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.885179 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = refills\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.refills' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.refills) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.refills is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the REFILLS in the DRUG_EXPOSURE is the expected data type based on the specification.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"refills","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":449,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.31"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.853299 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = days_supply\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.days_supply' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.days_supply) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.days_supply is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the DAYS_SUPPLY in the DRUG_EXPOSURE is the expected data type based on the specification.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"days_supply","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":450,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.32"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.747987 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = route_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.route_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.route_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.route_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the ROUTE_CONCEPT_ID in the DRUG_EXPOSURE is the expected data type based on the specification.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"route_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":451,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.33"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.833236 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = provider_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.provider_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.provider_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.provider_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PROVIDER_ID in the DRUG_EXPOSURE is the expected data type based on the specification.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":452,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.34"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.887728 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = visit_occurrence_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.visit_occurrence_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.visit_occurrence_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.visit_occurrence_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the VISIT_OCCURRENCE_ID in the DRUG_EXPOSURE is the expected data type based on the specification.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":453,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.35"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.786392 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = visit_detail_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.visit_detail_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.visit_detail_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.visit_detail_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the VISIT_DETAIL_ID in the DRUG_EXPOSURE is the expected data type based on the specification.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":454,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.36"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.018508 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_source_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_source_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.drug_source_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.drug_source_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the DRUG_SOURCE_CONCEPT_ID in the DRUG_EXPOSURE is the expected data type based on the specification.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_source_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":455,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.37"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.880266 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_occurrence_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_occurrence_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.procedure_occurrence_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.procedure_occurrence_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PROCEDURE_OCCURRENCE_ID in the PROCEDURE_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_occurrence_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":456,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.38"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"2.017501 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = person_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.person_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.person_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PERSON_ID in the PROCEDURE_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":457,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.39"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.820103 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.procedure_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.procedure_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PROCEDURE_CONCEPT_ID in the PROCEDURE_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":458,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.40"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.802086 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_type_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.procedure_type_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.procedure_type_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PROCEDURE_TYPE_CONCEPT_ID in the PROCEDURE_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_type_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":459,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.41"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.494734 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = modifier_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.modifier_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.modifier_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.modifier_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the MODIFIER_CONCEPT_ID in the PROCEDURE_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"modifier_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":460,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.42"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.485959 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = quantity\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.quantity' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.quantity) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.quantity is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the QUANTITY in the PROCEDURE_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"quantity","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":461,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.43"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.718499 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = provider_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.provider_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.provider_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.provider_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PROVIDER_ID in the PROCEDURE_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":462,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.44"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.685882 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = visit_occurrence_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.visit_occurrence_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.visit_occurrence_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.visit_occurrence_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the VISIT_OCCURRENCE_ID in the PROCEDURE_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":463,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.45"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"2.592450 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = visit_detail_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.visit_detail_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.visit_detail_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.visit_detail_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the VISIT_DETAIL_ID in the PROCEDURE_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":464,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.46"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.886962 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_source_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_source_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.procedure_source_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.procedure_source_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PROCEDURE_SOURCE_CONCEPT_ID in the PROCEDURE_OCCURRENCE is the expected data type based on the specification.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_source_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":465,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.47"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.539585 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.device_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.device_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the DEVICE_CONCEPT_ID in the DEVICE_EXPOSURE is the expected data type based on the specification.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":466,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.48"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.834752 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_type_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.device_type_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.device_type_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the DEVICE_TYPE_CONCEPT_ID in the DEVICE_EXPOSURE is the expected data type based on the specification.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_type_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":467,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.49"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.742322 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = quantity\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.quantity' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.quantity) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.quantity is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the QUANTITY in the DEVICE_EXPOSURE is the expected data type based on the specification.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"quantity","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":468,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.50"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"2.102197 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = provider_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.provider_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.provider_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.provider_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PROVIDER_ID in the DEVICE_EXPOSURE is the expected data type based on the specification.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":469,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.51"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.851619 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = visit_occurrence_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.visit_occurrence_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.visit_occurrence_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.visit_occurrence_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the VISIT_OCCURRENCE_ID in the DEVICE_EXPOSURE is the expected data type based on the specification.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":470,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.52"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.845205 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = visit_detail_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.visit_detail_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.visit_detail_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.visit_detail_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the VISIT_DETAIL_ID in the DEVICE_EXPOSURE is the expected data type based on the specification.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":471,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.53"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.718941 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_source_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_source_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.device_source_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.device_source_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the DEVICE_SOURCE_CONCEPT_ID in the DEVICE_EXPOSURE is the expected data type based on the specification.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_source_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":472,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.54"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.703405 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.measurement_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.measurement_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the MEASUREMENT_ID in the MEASUREMENT is the expected data type based on the specification.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":473,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.55"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.771487 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = person_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.person_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.person_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PERSON_ID in the MEASUREMENT is the expected data type based on the specification.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":474,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.56"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.517948 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.measurement_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.measurement_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the MEASUREMENT_CONCEPT_ID in the MEASUREMENT is the expected data type based on the specification.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":475,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.57"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.724659 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_type_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.measurement_type_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.measurement_type_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the MEASUREMENT_TYPE_CONCEPT_ID in the MEASUREMENT is the expected data type based on the specification.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_type_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":476,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.58"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.734302 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = operator_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.operator_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.operator_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.operator_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the OPERATOR_CONCEPT_ID in the MEASUREMENT is the expected data type based on the specification.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"operator_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":477,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.59"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.723625 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = value_as_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.value_as_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.value_as_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.value_as_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the VALUE_AS_CONCEPT_ID in the MEASUREMENT is the expected data type based on the specification.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"value_as_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":478,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.60"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"2.558672 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = unit_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.unit_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.unit_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.unit_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the UNIT_CONCEPT_ID in the MEASUREMENT is the expected data type based on the specification.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":479,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.61"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.718993 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = provider_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.provider_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.provider_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.provider_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PROVIDER_ID in the MEASUREMENT is the expected data type based on the specification.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":480,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.62"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.957002 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = visit_occurrence_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.visit_occurrence_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.visit_occurrence_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.visit_occurrence_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the VISIT_OCCURRENCE_ID in the MEASUREMENT is the expected data type based on the specification.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":481,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.63"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.590669 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = visit_detail_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.visit_detail_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.visit_detail_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.visit_detail_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the VISIT_DETAIL_ID in the MEASUREMENT is the expected data type based on the specification.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":482,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.64"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.827917 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_source_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_source_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.measurement_source_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.measurement_source_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the MEASUREMENT_SOURCE_CONCEPT_ID in the MEASUREMENT is the expected data type based on the specification.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_source_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":483,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.65"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.744172 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.visit_detail_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.visit_detail_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the VISIT_DETAIL_ID in the VISIT_DETAIL is the expected data type based on the specification.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":484,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.66"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.626155 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = person_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.person_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.person_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PERSON_ID in the VISIT_DETAIL is the expected data type based on the specification.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":485,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.67"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.883699 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.visit_detail_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.visit_detail_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the VISIT_DETAIL_CONCEPT_ID in the VISIT_DETAIL is the expected data type based on the specification.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":486,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.68"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.774182 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = provider_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.provider_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.provider_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.provider_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PROVIDER_ID in the VISIT_DETAIL is the expected data type based on the specification.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":487,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.69"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.919851 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = care_site_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.care_site_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.care_site_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.care_site_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the CARE_SITE_ID in the VISIT_DETAIL is the expected data type based on the specification.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":488,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.70"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.538022 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.note_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.note_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the NOTE_ID in the NOTE is the expected data type based on the specification.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":489,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.71"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.929325 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = person_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.person_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.person_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PERSON_ID in the NOTE is the expected data type based on the specification.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":490,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.72"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.548538 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_type_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.note_type_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.note_type_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the NOTE_TYPE_CONCEPT_ID in the NOTE is the expected data type based on the specification.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_type_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":491,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.73"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.869386 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_class_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_class_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.note_class_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.note_class_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the NOTE_CLASS_CONCEPT_ID in the NOTE is the expected data type based on the specification.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_class_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":492,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.74"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.578717 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = encoding_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.encoding_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.encoding_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.encoding_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the ENCODING_CONCEPT_ID in the NOTE is the expected data type based on the specification.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"encoding_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":493,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.75"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.264197 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = language_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.language_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.language_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.language_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the LANGUAGE_CONCEPT_ID in the NOTE is the expected data type based on the specification.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"language_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":494,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.76"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.712779 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = provider_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.provider_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.provider_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.provider_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PROVIDER_ID in the NOTE is the expected data type based on the specification.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":495,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.77"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.462068 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = visit_occurrence_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.visit_occurrence_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.visit_occurrence_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.visit_occurrence_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the VISIT_OCCURRENCE_ID in the NOTE is the expected data type based on the specification.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":496,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.78"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.774734 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = visit_detail_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.visit_detail_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.visit_detail_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.visit_detail_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the VISIT_DETAIL_ID in the NOTE is the expected data type based on the specification.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":497,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.79"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.724395 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = note_nlp_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.note_nlp_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.note_nlp_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.note_nlp_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the NOTE_NLP_ID in the NOTE_NLP is the expected data type based on the specification.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"note_nlp_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":498,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.80"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.863063 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = note_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.note_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.note_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.note_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the NOTE_ID in the NOTE_NLP is the expected data type based on the specification.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"note_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":499,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.81"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.461588 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = section_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.section_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.section_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.section_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the SECTION_CONCEPT_ID in the NOTE_NLP is the expected data type based on the specification.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"section_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":500,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.82"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.609432 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = note_nlp_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.note_nlp_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.note_nlp_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.note_nlp_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the NOTE_NLP_CONCEPT_ID in the NOTE_NLP is the expected data type based on the specification.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"note_nlp_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":501,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.83"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.946668 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = note_nlp_source_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.note_nlp_source_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.note_nlp_source_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.note_nlp_source_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the NOTE_NLP_SOURCE_CONCEPT_ID in the NOTE_NLP is the expected data type based on the specification.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"note_nlp_source_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":502,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.84"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.000429 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.observation_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.observation_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the OBSERVATION_ID in the OBSERVATION is the expected data type based on the specification.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":503,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.85"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.525191 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = person_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.person_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.person_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PERSON_ID in the OBSERVATION is the expected data type based on the specification.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":504,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.86"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"3.452722 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.observation_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.observation_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the OBSERVATION_CONCEPT_ID in the OBSERVATION is the expected data type based on the specification.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":505,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.87"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.558463 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_type_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.observation_type_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.observation_type_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the OBSERVATION_TYPE_CONCEPT_ID in the OBSERVATION is the expected data type based on the specification.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_type_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":506,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.88"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.821800 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = qualifier_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.qualifier_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.qualifier_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.qualifier_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the QUALIFIER_CONCEPT_ID in the OBSERVATION is the expected data type based on the specification.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"qualifier_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":507,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.89"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.811394 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = unit_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.unit_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.unit_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.unit_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the UNIT_CONCEPT_ID in the OBSERVATION is the expected data type based on the specification.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":508,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.90"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.879728 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = provider_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.provider_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.provider_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.provider_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PROVIDER_ID in the OBSERVATION is the expected data type based on the specification.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":509,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.91"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.888000 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = visit_occurrence_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.visit_occurrence_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.visit_occurrence_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.visit_occurrence_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the VISIT_OCCURRENCE_ID in the OBSERVATION is the expected data type based on the specification.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":510,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.92"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.840328 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = visit_detail_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.visit_detail_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.visit_detail_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.visit_detail_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the VISIT_DETAIL_ID in the OBSERVATION is the expected data type based on the specification.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":511,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.93"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.622110 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_source_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_source_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.observation_source_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.observation_source_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the OBSERVATION_SOURCE_CONCEPT_ID in the OBSERVATION is the expected data type based on the specification.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_source_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":512,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.94"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.616983 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.specimen_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.specimen_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the SPECIMEN_ID in the SPECIMEN is the expected data type based on the specification.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":513,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.95"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.881437 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = person_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.person_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.person_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PERSON_ID in the SPECIMEN is the expected data type based on the specification.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":514,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.96"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.827447 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.specimen_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.specimen_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the SPECIMEN_CONCEPT_ID in the SPECIMEN is the expected data type based on the specification.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":515,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.97"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"2.163782 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_type_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.specimen_type_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.specimen_type_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the SPECIMEN_TYPE_CONCEPT_ID in the SPECIMEN is the expected data type based on the specification.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_type_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":516,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.98"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.888596 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = unit_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.unit_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.unit_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.unit_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the UNIT_CONCEPT_ID in the SPECIMEN is the expected data type based on the specification.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":517,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.99"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.441247 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = anatomic_site_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.anatomic_site_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.anatomic_site_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.anatomic_site_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the ANATOMIC_SITE_CONCEPT_ID in the SPECIMEN is the expected data type based on the specification.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"anatomic_site_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":518,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.100"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"2.724208 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = disease_status_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.disease_status_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.disease_status_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.disease_status_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the DISEASE_STATUS_CONCEPT_ID in the SPECIMEN is the expected data type based on the specification.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"disease_status_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":519,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.101"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"2.097010 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = domain_concept_id_1\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.domain_concept_id_1' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.domain_concept_id_1) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.domain_concept_id_1 is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the DOMAIN_CONCEPT_ID_1 in the FACT_RELATIONSHIP is the expected data type based on the specification.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"domain_concept_id_1","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":520,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.102"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"1.545208 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = fact_id_1\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.fact_id_1' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.fact_id_1) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.fact_id_1 is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the FACT_ID_1 in the FACT_RELATIONSHIP is the expected data type based on the specification.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"fact_id_1","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":521,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.103"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"1.646456 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = domain_concept_id_2\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.domain_concept_id_2' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.domain_concept_id_2) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.domain_concept_id_2 is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the DOMAIN_CONCEPT_ID_2 in the FACT_RELATIONSHIP is the expected data type based on the specification.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"domain_concept_id_2","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":522,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.104"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"1.465901 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = fact_id_2\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.fact_id_2' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.fact_id_2) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.fact_id_2 is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the FACT_ID_2 in the FACT_RELATIONSHIP is the expected data type based on the specification.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"fact_id_2","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":523,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.105"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"2.063547 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = relationship_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.relationship_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.relationship_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.relationship_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the RELATIONSHIP_CONCEPT_ID in the FACT_RELATIONSHIP is the expected data type based on the specification.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"relationship_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":524,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.106"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.603780 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = LOCATION\ncdmFieldName = location_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'LOCATION.location_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.location cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.location_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.location_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.location\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the LOCATION_ID in the LOCATION is the expected data type based on the specification.","CDM_TABLE_NAME":"LOCATION","CDM_FIELD_NAME":"location_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":525,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.107"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":31,"EXECUTION_TIME":"1.604887 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CARE_SITE\ncdmFieldName = care_site_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CARE_SITE.care_site_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.care_site_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.care_site_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.care_site\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the CARE_SITE_ID in the CARE_SITE is the expected data type based on the specification.","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":526,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.108"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":31,"EXECUTION_TIME":"1.530430 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CARE_SITE\ncdmFieldName = place_of_service_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CARE_SITE.place_of_service_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.place_of_service_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.place_of_service_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.care_site\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PLACE_OF_SERVICE_CONCEPT_ID in the CARE_SITE is the expected data type based on the specification.","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"place_of_service_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":527,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.109"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":31,"EXECUTION_TIME":"2.064363 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CARE_SITE\ncdmFieldName = location_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CARE_SITE.location_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.location_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.location_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.care_site\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the LOCATION_ID in the CARE_SITE is the expected data type based on the specification.","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"location_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":528,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.110"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.419751 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = provider_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.provider_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.provider_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.provider_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PROVIDER_ID in the PROVIDER is the expected data type based on the specification.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":529,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.111"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.676737 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = specialty_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.specialty_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.specialty_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.specialty_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the SPECIALTY_CONCEPT_ID in the PROVIDER is the expected data type based on the specification.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"specialty_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":530,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.112"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.561009 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = care_site_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.care_site_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.care_site_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.care_site_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the CARE_SITE_ID in the PROVIDER is the expected data type based on the specification.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":531,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.113"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.713116 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = year_of_birth\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.year_of_birth' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.year_of_birth) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.year_of_birth is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the YEAR_OF_BIRTH in the PROVIDER is the expected data type based on the specification.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"year_of_birth","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":532,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.114"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.477905 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = gender_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.gender_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.gender_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.gender_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the GENDER_CONCEPT_ID in the PROVIDER is the expected data type based on the specification.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"gender_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":533,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.115"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.470417 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = specialty_source_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.specialty_source_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.specialty_source_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.specialty_source_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the SPECIALTY_SOURCE_CONCEPT_ID in the PROVIDER is the expected data type based on the specification.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"specialty_source_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":534,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.116"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.535478 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = gender_source_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.gender_source_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.gender_source_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.gender_source_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the GENDER_SOURCE_CONCEPT_ID in the PROVIDER is the expected data type based on the specification.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"gender_source_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":535,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.117"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.876809 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_plan_period_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.payer_plan_period_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.payer_plan_period_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.payer_plan_period_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PAYER_PLAN_PERIOD_ID in the PAYER_PLAN_PERIOD is the expected data type based on the specification.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_plan_period_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":536,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.118"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.717870 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = person_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.person_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.person_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PERSON_ID in the PAYER_PLAN_PERIOD is the expected data type based on the specification.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":537,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.119"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.910452 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.payer_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.payer_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.payer_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PAYER_CONCEPT_ID in the PAYER_PLAN_PERIOD is the expected data type based on the specification.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":538,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.120"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.147537 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_source_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.payer_source_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.payer_source_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.payer_source_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PAYER_SOURCE_CONCEPT_ID in the PAYER_PLAN_PERIOD is the expected data type based on the specification.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_source_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":539,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.121"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.759626 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = plan_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.plan_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.plan_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.plan_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PLAN_CONCEPT_ID in the PAYER_PLAN_PERIOD is the expected data type based on the specification.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"plan_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":540,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.122"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.413677 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = plan_source_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.plan_source_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.plan_source_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.plan_source_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PLAN_SOURCE_CONCEPT_ID in the PAYER_PLAN_PERIOD is the expected data type based on the specification.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"plan_source_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":541,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.123"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.509041 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = sponsor_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.sponsor_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.sponsor_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.sponsor_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the SPONSOR_CONCEPT_ID in the PAYER_PLAN_PERIOD is the expected data type based on the specification.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"sponsor_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":542,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.124"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.616568 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = sponsor_source_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.sponsor_source_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.sponsor_source_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.sponsor_source_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the SPONSOR_SOURCE_CONCEPT_ID in the PAYER_PLAN_PERIOD is the expected data type based on the specification.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"sponsor_source_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":543,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.125"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.902622 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = stop_reason_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.stop_reason_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.stop_reason_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.stop_reason_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the STOP_REASON_CONCEPT_ID in the PAYER_PLAN_PERIOD is the expected data type based on the specification.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"stop_reason_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":544,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.126"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.549515 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = stop_reason_source_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.stop_reason_source_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.stop_reason_source_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.stop_reason_source_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the STOP_REASON_SOURCE_CONCEPT_ID in the PAYER_PLAN_PERIOD is the expected data type based on the specification.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"stop_reason_source_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":545,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.127"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.622773 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = cost_type_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.cost_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.cost_type_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.cost_type_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the COST_TYPE_CONCEPT_ID in the COST is the expected data type based on the specification.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"cost_type_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":546,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.128"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.498038 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = currency_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.currency_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.currency_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.currency_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the CURRENCY_CONCEPT_ID in the COST is the expected data type based on the specification.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"currency_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":547,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.129"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.351064 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = revenue_code_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.revenue_code_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.revenue_code_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.revenue_code_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the REVENUE_CODE_CONCEPT_ID in the COST is the expected data type based on the specification.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"revenue_code_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":548,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.130"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.420971 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = drg_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.drg_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.drg_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.drg_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the DRG_CONCEPT_ID in the COST is the expected data type based on the specification.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"drg_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":549,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.131"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.577149 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_era_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_era_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.drug_era_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.drug_era_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the DRUG_ERA_ID in the DRUG_ERA is the expected data type based on the specification.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_era_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":550,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.132"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"2.098804 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = person_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.person_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.person_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PERSON_ID in the DRUG_ERA is the expected data type based on the specification.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":551,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.133"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.486563 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.drug_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.drug_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the DRUG_CONCEPT_ID in the DRUG_ERA is the expected data type based on the specification.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":552,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.134"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.838924 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_exposure_count\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_exposure_count' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.drug_exposure_count) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.drug_exposure_count is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the DRUG_EXPOSURE_COUNT in the DRUG_ERA is the expected data type based on the specification.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_exposure_count","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":553,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.135"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.783101 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = gap_days\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.gap_days' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.gap_days) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.gap_days is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the GAP_DAYS in the DRUG_ERA is the expected data type based on the specification.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"gap_days","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":554,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.136"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"2.190685 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_era_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.dose_era_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.dose_era_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.dose_era_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the DOSE_ERA_ID in the DOSE_ERA is the expected data type based on the specification.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_era_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":555,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.137"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"1.730823 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = person_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.person_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.person_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PERSON_ID in the DOSE_ERA is the expected data type based on the specification.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":556,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.138"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"2.071792 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = drug_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.drug_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.drug_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.drug_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the DRUG_CONCEPT_ID in the DOSE_ERA is the expected data type based on the specification.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":557,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.139"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"1.955398 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = unit_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.unit_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.unit_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.unit_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the UNIT_CONCEPT_ID in the DOSE_ERA is the expected data type based on the specification.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":558,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.140"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"1.753428 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_era_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_era_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.condition_era_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.condition_era_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the CONDITION_ERA_ID in the CONDITION_ERA is the expected data type based on the specification.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_era_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":559,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.141"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"1.964306 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = person_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.person_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.person_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the PERSON_ID in the CONDITION_ERA is the expected data type based on the specification.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":560,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.142"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"1.494962 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_concept_id\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.condition_concept_id) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.condition_concept_id is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the CONDITION_CONCEPT_ID in the CONDITION_ERA is the expected data type based on the specification.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_concept_id","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":561,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.143"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"1.738171 secs","QUERY_TEXT":"\n/*********\nFIELD_CDM_DATATYPE\n\nAt a minimum, for each field that is supposed to be an integer, verify it is an integer\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_occurrence_count\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_occurrence_count' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t where CASE WHEN SAFE_CAST(abs(cdmtable.condition_occurrence_count) AS FLOAT64) IS NULL THEN 0 ELSE 1 END = 0 and cdmtable.condition_occurrence_count is not null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era\n) denominator\n;","CHECK_NAME":"cdmDatatype","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"A yes or no value indicating if the CONDITION_OCCURRENCE_COUNT in the CONDITION_ERA is the expected data type based on the specification.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_occurrence_count","SQL_FILE":"field_cdm_datatype.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":562,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"4.144"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.973794 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.person_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t  \n\t\t where cdmtable.person_id in (   select person_id \n\t\t                              from mimiciv_demo_current_cdm_531.person\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the PERSON_ID field of the PERSON.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":563,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"5.1"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.958030 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = observation_period_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.observation_period_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\t  \n\t\t where cdmtable.observation_period_id in (   select observation_period_id \n\t\t                              from mimiciv_demo_current_cdm_531.observation_period\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the OBSERVATION_PERIOD_ID field of the OBSERVATION_PERIOD.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"observation_period_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":564,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"5.2"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.932524 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_occurrence_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t  \n\t\t where cdmtable.visit_occurrence_id in (   select visit_occurrence_id \n\t\t                              from mimiciv_demo_current_cdm_531.visit_occurrence\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the VISIT_OCCURRENCE_ID field of the VISIT_OCCURRENCE.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":565,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"5.3"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.734461 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_occurrence_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t  \n\t\t where cdmtable.condition_occurrence_id in (   select condition_occurrence_id \n\t\t                              from mimiciv_demo_current_cdm_531.condition_occurrence\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the CONDITION_OCCURRENCE_ID field of the CONDITION_OCCURRENCE.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_occurrence_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":566,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"5.4"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.095542 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t  \n\t\t where cdmtable.drug_exposure_id in (   select drug_exposure_id \n\t\t                              from mimiciv_demo_current_cdm_531.drug_exposure\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the DRUG_EXPOSURE_ID field of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":567,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"5.5"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.954152 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_occurrence_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t  \n\t\t where cdmtable.procedure_occurrence_id in (   select procedure_occurrence_id \n\t\t                              from mimiciv_demo_current_cdm_531.procedure_occurrence\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the PROCEDURE_OCCURRENCE_ID field of the PROCEDURE_OCCURRENCE.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_occurrence_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":568,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"5.6"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"2.280091 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t  \n\t\t where cdmtable.device_exposure_id in (   select device_exposure_id \n\t\t                              from mimiciv_demo_current_cdm_531.device_exposure\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the DEVICE_EXPOSURE_ID field of the DEVICE_EXPOSURE.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":569,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"5.7"},{"NUM_VIOLATED_ROWS":27008,"PCT_VIOLATED_ROWS":0.0643,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"2.432174 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t  \n\t\t where cdmtable.measurement_id in (   select measurement_id \n\t\t                              from mimiciv_demo_current_cdm_531.measurement\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the MEASUREMENT_ID field of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":570,"FAILED":1,"THRESHOLD_VALUE":0,"_row":"5.8"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"2.091674 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t  \n\t\t where cdmtable.visit_detail_id in (   select visit_detail_id \n\t\t                              from mimiciv_demo_current_cdm_531.visit_detail\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the VISIT_DETAIL_ID field of the VISIT_DETAIL.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":571,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"5.9"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.024668 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t  \n\t\t where cdmtable.note_id in (   select note_id \n\t\t                              from mimiciv_demo_current_cdm_531.note\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the NOTE_ID field of the NOTE.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":572,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"5.10"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.686315 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = note_nlp_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.note_nlp_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t  \n\t\t where cdmtable.note_nlp_id in (   select note_nlp_id \n\t\t                              from mimiciv_demo_current_cdm_531.note_nlp\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the NOTE_NLP_ID field of the NOTE_NLP.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"note_nlp_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":573,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"5.11"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.060413 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t  \n\t\t where cdmtable.observation_id in (   select observation_id \n\t\t                              from mimiciv_demo_current_cdm_531.observation\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the OBSERVATION_ID field of the OBSERVATION.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":574,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"5.12"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"2.306178 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t  \n\t\t where cdmtable.specimen_id in (   select specimen_id \n\t\t                              from mimiciv_demo_current_cdm_531.specimen\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the SPECIMEN_ID field of the SPECIMEN.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":575,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"5.13"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.312210 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = LOCATION\ncdmFieldName = location_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'LOCATION.location_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.location cdmtable\n\t\t  \n\t\t where cdmtable.location_id in (   select location_id \n\t\t                              from mimiciv_demo_current_cdm_531.location\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.location cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the LOCATION_ID field of the LOCATION.","CDM_TABLE_NAME":"LOCATION","CDM_FIELD_NAME":"location_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":576,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"5.14"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":31,"EXECUTION_TIME":"1.884506 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CARE_SITE\ncdmFieldName = care_site_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CARE_SITE.care_site_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\t  \n\t\t where cdmtable.care_site_id in (   select care_site_id \n\t\t                              from mimiciv_demo_current_cdm_531.care_site\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the CARE_SITE_ID field of the CARE_SITE.","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":577,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"5.15"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.696229 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.provider_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t  \n\t\t where cdmtable.provider_id in (   select provider_id \n\t\t                              from mimiciv_demo_current_cdm_531.provider\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the PROVIDER_ID field of the PROVIDER.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":578,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"5.16"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"4.554767 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_plan_period_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.payer_plan_period_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t  \n\t\t where cdmtable.payer_plan_period_id in (   select payer_plan_period_id \n\t\t                              from mimiciv_demo_current_cdm_531.payer_plan_period\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the PAYER_PLAN_PERIOD_ID field of the PAYER_PLAN_PERIOD.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_plan_period_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":579,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"5.17"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.642202 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = cost_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.cost_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t  \n\t\t where cdmtable.cost_id in (   select cost_id \n\t\t                              from mimiciv_demo_current_cdm_531.cost\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the COST_ID field of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"cost_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":580,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"5.18"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"2.073326 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_era_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_era_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t  \n\t\t where cdmtable.drug_era_id in (   select drug_era_id \n\t\t                              from mimiciv_demo_current_cdm_531.drug_era\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the DRUG_ERA_ID field of the DRUG_ERA.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_era_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":581,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"5.19"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"1.919328 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_era_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.dose_era_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t  \n\t\t where cdmtable.dose_era_id in (   select dose_era_id \n\t\t                              from mimiciv_demo_current_cdm_531.dose_era\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the DOSE_ERA_ID field of the DOSE_ERA.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_era_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":582,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"5.20"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"3.256858 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_PRIMARY_KEY\n\nPrimary Key - verify those fields where IS_PRIMARY_KEY == Yes, the values in that field are unique\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_era_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_era_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t  \n\t\t where cdmtable.condition_era_id in (   select condition_era_id \n\t\t                              from mimiciv_demo_current_cdm_531.condition_era\n\t\t\t\t\t\t\t\t\t\t\t\t   group by  1 having COUNT(*) > 1  ) \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isPrimaryKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a duplicate value in the CONDITION_ERA_ID field of the CONDITION_ERA.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_era_id","SQL_FILE":"field_is_primary_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":583,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"5.21"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"3.138800 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = gender_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.gender_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.gender_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.gender_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the GENDER_CONCEPT_ID field in the PERSON table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"gender_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":584,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.1"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"3.564007 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = race_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.race_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.race_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.race_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the RACE_CONCEPT_ID field in the PERSON table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"race_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":585,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.2"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.900298 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = ethnicity_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.ethnicity_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.ethnicity_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.ethnicity_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the ETHNICITY_CONCEPT_ID field in the PERSON table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"ethnicity_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":586,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.3"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.890927 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = PERSON\ncdmFieldName = location_id\nfkTableName = LOCATION\nfkFieldName = LOCATION_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.location_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.location fktable\n\t\ton cdmtable.location_id = fktable.location_id\n\t\twhere fktable.location_id is null and cdmtable.location_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the LOCATION_ID field in the PERSON table that does not exist in the LOCATION table.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"location_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":587,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.4"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.054893 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = PERSON\ncdmFieldName = provider_id\nfkTableName = PROVIDER\nfkFieldName = PROVIDER_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.provider fktable\n\t\ton cdmtable.provider_id = fktable.provider_id\n\t\twhere fktable.provider_id is null and cdmtable.provider_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PROVIDER_ID field in the PERSON table that does not exist in the PROVIDER table.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"provider_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":588,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.5"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.766396 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = PERSON\ncdmFieldName = care_site_id\nfkTableName = CARE_SITE\nfkFieldName = CARE_SITE_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.care_site_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.care_site fktable\n\t\ton cdmtable.care_site_id = fktable.care_site_id\n\t\twhere fktable.care_site_id is null and cdmtable.care_site_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the CARE_SITE_ID field in the PERSON table that does not exist in the CARE_SITE table.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":589,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.6"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.926586 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = gender_source_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.gender_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.gender_source_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.gender_source_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the GENDER_SOURCE_CONCEPT_ID field in the PERSON table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"gender_source_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":590,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.7"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"3.017178 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = race_source_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.race_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.race_source_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.race_source_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the RACE_SOURCE_CONCEPT_ID field in the PERSON table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"race_source_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":591,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.8"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.862010 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = ethnicity_source_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.ethnicity_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.ethnicity_source_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.ethnicity_source_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the ETHNICITY_SOURCE_CONCEPT_ID field in the PERSON table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"ethnicity_source_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":592,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.9"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.907712 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = person_id\nfkTableName = PERSON\nfkFieldName = PERSON_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.person fktable\n\t\ton cdmtable.person_id = fktable.person_id\n\t\twhere fktable.person_id is null and cdmtable.person_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PERSON_ID field in the OBSERVATION_PERIOD table that does not exist in the PERSON table.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"person_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":593,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.10"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.676112 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = period_type_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.period_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.period_type_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.period_type_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PERIOD_TYPE_CONCEPT_ID field in the OBSERVATION_PERIOD table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"period_type_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":594,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.11"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.950836 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = person_id\nfkTableName = PERSON\nfkFieldName = PERSON_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.person fktable\n\t\ton cdmtable.person_id = fktable.person_id\n\t\twhere fktable.person_id is null and cdmtable.person_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PERSON_ID field in the VISIT_OCCURRENCE table that does not exist in the PERSON table.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"person_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":595,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.12"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"3.221903 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.visit_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.visit_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_CONCEPT_ID field in the VISIT_OCCURRENCE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":596,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.13"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.985165 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_type_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.visit_type_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.visit_type_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_TYPE_CONCEPT_ID field in the VISIT_OCCURRENCE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_type_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":597,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.14"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.230965 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = provider_id\nfkTableName = PROVIDER\nfkFieldName = PROVIDER_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.provider fktable\n\t\ton cdmtable.provider_id = fktable.provider_id\n\t\twhere fktable.provider_id is null and cdmtable.provider_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PROVIDER_ID field in the VISIT_OCCURRENCE table that does not exist in the PROVIDER table.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":598,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.15"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.724500 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = care_site_id\nfkTableName = CARE_SITE\nfkFieldName = CARE_SITE_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.care_site_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.care_site fktable\n\t\ton cdmtable.care_site_id = fktable.care_site_id\n\t\twhere fktable.care_site_id is null and cdmtable.care_site_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the CARE_SITE_ID field in the VISIT_OCCURRENCE table that does not exist in the CARE_SITE table.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":599,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.16"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.527923 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_source_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.visit_source_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.visit_source_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_SOURCE_CONCEPT_ID field in the VISIT_OCCURRENCE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_source_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":600,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.17"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.997778 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = admitting_source_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.admitting_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.admitting_source_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.admitting_source_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the ADMITTING_SOURCE_CONCEPT_ID field in the VISIT_OCCURRENCE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"admitting_source_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":601,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.18"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"3.101156 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = discharge_to_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.discharge_to_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.discharge_to_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.discharge_to_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DISCHARGE_TO_CONCEPT_ID field in the VISIT_OCCURRENCE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"discharge_to_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":602,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.19"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.941663 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = preceding_visit_occurrence_id\nfkTableName = VISIT_OCCURRENCE\nfkFieldName = VISIT_OCCURRENCE_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.preceding_visit_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.visit_occurrence fktable\n\t\ton cdmtable.preceding_visit_occurrence_id = fktable.visit_occurrence_id\n\t\twhere fktable.visit_occurrence_id is null and cdmtable.preceding_visit_occurrence_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PRECEDING_VISIT_OCCURRENCE_ID field in the VISIT_OCCURRENCE table that does not exist in the VISIT_OCCURRENCE table.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"preceding_visit_occurrence_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":603,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.20"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.884233 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = person_id\nfkTableName = PERSON\nfkFieldName = PERSON_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.person fktable\n\t\ton cdmtable.person_id = fktable.person_id\n\t\twhere fktable.person_id is null and cdmtable.person_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PERSON_ID field in the CONDITION_OCCURRENCE table that does not exist in the PERSON table.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"person_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":604,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.21"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"3.348227 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.condition_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.condition_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the CONDITION_CONCEPT_ID field in the CONDITION_OCCURRENCE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":605,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.22"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"2.714312 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_type_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.condition_type_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.condition_type_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the CONDITION_TYPE_CONCEPT_ID field in the CONDITION_OCCURRENCE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_type_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":606,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.23"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"2.892953 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_status_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_status_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.condition_status_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.condition_status_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the CONDITION_STATUS_CONCEPT_ID field in the CONDITION_OCCURRENCE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_status_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":607,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.24"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.765954 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = provider_id\nfkTableName = PROVIDER\nfkFieldName = PROVIDER_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.provider fktable\n\t\ton cdmtable.provider_id = fktable.provider_id\n\t\twhere fktable.provider_id is null and cdmtable.provider_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PROVIDER_ID field in the CONDITION_OCCURRENCE table that does not exist in the PROVIDER table.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":608,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.25"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.896770 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = visit_occurrence_id\nfkTableName = VISIT_OCCURRENCE\nfkFieldName = VISIT_OCCURRENCE_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.visit_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.visit_occurrence fktable\n\t\ton cdmtable.visit_occurrence_id = fktable.visit_occurrence_id\n\t\twhere fktable.visit_occurrence_id is null and cdmtable.visit_occurrence_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_OCCURRENCE_ID field in the CONDITION_OCCURRENCE table that does not exist in the VISIT_OCCURRENCE table.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":609,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.26"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.745447 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = visit_detail_id\nfkTableName = VISIT_DETAIL\nfkFieldName = VISIT_DETAIL_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.visit_detail_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.visit_detail fktable\n\t\ton cdmtable.visit_detail_id = fktable.visit_detail_id\n\t\twhere fktable.visit_detail_id is null and cdmtable.visit_detail_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_DETAIL_ID field in the CONDITION_OCCURRENCE table that does not exist in the VISIT_DETAIL table.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":610,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.27"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"3.221655 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_source_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.condition_source_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.condition_source_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the CONDITION_SOURCE_CONCEPT_ID field in the CONDITION_OCCURRENCE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_source_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":611,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.28"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.685098 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = person_id\nfkTableName = PERSON\nfkFieldName = PERSON_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.person fktable\n\t\ton cdmtable.person_id = fktable.person_id\n\t\twhere fktable.person_id is null and cdmtable.person_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PERSON_ID field in the DRUG_EXPOSURE table that does not exist in the PERSON table.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"person_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":612,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.29"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.737250 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.drug_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.drug_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DRUG_CONCEPT_ID field in the DRUG_EXPOSURE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":613,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.30"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.966500 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_type_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.drug_type_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.drug_type_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DRUG_TYPE_CONCEPT_ID field in the DRUG_EXPOSURE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_type_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":614,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.31"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.894282 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = route_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.route_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.route_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.route_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the ROUTE_CONCEPT_ID field in the DRUG_EXPOSURE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"route_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":615,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.32"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.757785 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = provider_id\nfkTableName = PROVIDER\nfkFieldName = PROVIDER_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.provider fktable\n\t\ton cdmtable.provider_id = fktable.provider_id\n\t\twhere fktable.provider_id is null and cdmtable.provider_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PROVIDER_ID field in the DRUG_EXPOSURE table that does not exist in the PROVIDER table.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":616,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.33"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.528887 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = visit_occurrence_id\nfkTableName = VISIT_OCCURRENCE\nfkFieldName = VISIT_OCCURRENCE_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.visit_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.visit_occurrence fktable\n\t\ton cdmtable.visit_occurrence_id = fktable.visit_occurrence_id\n\t\twhere fktable.visit_occurrence_id is null and cdmtable.visit_occurrence_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_OCCURRENCE_ID field in the DRUG_EXPOSURE table that does not exist in the VISIT_OCCURRENCE table.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":617,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.34"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.051208 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = visit_detail_id\nfkTableName = VISIT_DETAIL\nfkFieldName = VISIT_DETAIL_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.visit_detail_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.visit_detail fktable\n\t\ton cdmtable.visit_detail_id = fktable.visit_detail_id\n\t\twhere fktable.visit_detail_id is null and cdmtable.visit_detail_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_DETAIL_ID field in the DRUG_EXPOSURE table that does not exist in the VISIT_DETAIL table.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":618,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.35"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.551473 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_source_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.drug_source_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.drug_source_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DRUG_SOURCE_CONCEPT_ID field in the DRUG_EXPOSURE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_source_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":619,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.36"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.779953 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = person_id\nfkTableName = PERSON\nfkFieldName = PERSON_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.person fktable\n\t\ton cdmtable.person_id = fktable.person_id\n\t\twhere fktable.person_id is null and cdmtable.person_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PERSON_ID field in the PROCEDURE_OCCURRENCE table that does not exist in the PERSON table.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"person_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":620,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.37"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"2.612968 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.procedure_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.procedure_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PROCEDURE_CONCEPT_ID field in the PROCEDURE_OCCURRENCE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":621,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.38"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"3.043114 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_type_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.procedure_type_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.procedure_type_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PROCEDURE_TYPE_CONCEPT_ID field in the PROCEDURE_OCCURRENCE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_type_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":622,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.39"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"2.746959 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = modifier_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.modifier_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.modifier_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.modifier_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the MODIFIER_CONCEPT_ID field in the PROCEDURE_OCCURRENCE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"modifier_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":623,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.40"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"2.243082 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = provider_id\nfkTableName = PROVIDER\nfkFieldName = PROVIDER_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.provider fktable\n\t\ton cdmtable.provider_id = fktable.provider_id\n\t\twhere fktable.provider_id is null and cdmtable.provider_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PROVIDER_ID field in the PROCEDURE_OCCURRENCE table that does not exist in the PROVIDER table.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":624,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.41"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.694973 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = visit_occurrence_id\nfkTableName = VISIT_OCCURRENCE\nfkFieldName = VISIT_OCCURRENCE_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.visit_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.visit_occurrence fktable\n\t\ton cdmtable.visit_occurrence_id = fktable.visit_occurrence_id\n\t\twhere fktable.visit_occurrence_id is null and cdmtable.visit_occurrence_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_OCCURRENCE_ID field in the PROCEDURE_OCCURRENCE table that does not exist in the VISIT_OCCURRENCE table.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":625,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.42"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.789319 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = visit_detail_id\nfkTableName = VISIT_DETAIL\nfkFieldName = VISIT_DETAIL_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.visit_detail_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.visit_detail fktable\n\t\ton cdmtable.visit_detail_id = fktable.visit_detail_id\n\t\twhere fktable.visit_detail_id is null and cdmtable.visit_detail_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_DETAIL_ID field in the PROCEDURE_OCCURRENCE table that does not exist in the VISIT_DETAIL table.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":626,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.43"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"2.562385 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_source_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.procedure_source_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.procedure_source_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PROCEDURE_SOURCE_CONCEPT_ID field in the PROCEDURE_OCCURRENCE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_source_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":627,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.44"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"2.519572 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = person_id\nfkTableName = PERSON\nfkFieldName = PERSON_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.person fktable\n\t\ton cdmtable.person_id = fktable.person_id\n\t\twhere fktable.person_id is null and cdmtable.person_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PERSON_ID field in the DEVICE_EXPOSURE table that does not exist in the PERSON table.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"person_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":628,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.45"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"3.796507 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.device_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.device_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DEVICE_CONCEPT_ID field in the DEVICE_EXPOSURE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":629,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.46"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"2.704174 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_type_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.device_type_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.device_type_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DEVICE_TYPE_CONCEPT_ID field in the DEVICE_EXPOSURE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_type_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":630,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.47"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.769897 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = provider_id\nfkTableName = PROVIDER\nfkFieldName = PROVIDER_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.provider fktable\n\t\ton cdmtable.provider_id = fktable.provider_id\n\t\twhere fktable.provider_id is null and cdmtable.provider_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PROVIDER_ID field in the DEVICE_EXPOSURE table that does not exist in the PROVIDER table.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":631,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.48"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.815603 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = visit_occurrence_id\nfkTableName = VISIT_OCCURRENCE\nfkFieldName = VISIT_OCCURRENCE_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.visit_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.visit_occurrence fktable\n\t\ton cdmtable.visit_occurrence_id = fktable.visit_occurrence_id\n\t\twhere fktable.visit_occurrence_id is null and cdmtable.visit_occurrence_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_OCCURRENCE_ID field in the DEVICE_EXPOSURE table that does not exist in the VISIT_OCCURRENCE table.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":632,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.49"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.867161 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = visit_detail_id\nfkTableName = VISIT_DETAIL\nfkFieldName = VISIT_DETAIL_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.visit_detail_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.visit_detail fktable\n\t\ton cdmtable.visit_detail_id = fktable.visit_detail_id\n\t\twhere fktable.visit_detail_id is null and cdmtable.visit_detail_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_DETAIL_ID field in the DEVICE_EXPOSURE table that does not exist in the VISIT_DETAIL table.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":633,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.50"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"2.344644 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_source_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.device_source_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.device_source_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DEVICE_SOURCE_CONCEPT_ID field in the DEVICE_EXPOSURE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_source_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":634,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.51"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.636383 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = MEASUREMENT\ncdmFieldName = person_id\nfkTableName = PERSON\nfkFieldName = PERSON_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.person fktable\n\t\ton cdmtable.person_id = fktable.person_id\n\t\twhere fktable.person_id is null and cdmtable.person_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PERSON_ID field in the MEASUREMENT table that does not exist in the PERSON table.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"person_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":635,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.52"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"3.155700 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.measurement_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.measurement_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the MEASUREMENT_CONCEPT_ID field in the MEASUREMENT table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":636,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.53"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"2.647415 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_type_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.measurement_type_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.measurement_type_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the MEASUREMENT_TYPE_CONCEPT_ID field in the MEASUREMENT table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_type_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":637,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.54"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"2.913830 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = operator_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.operator_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.operator_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.operator_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the OPERATOR_CONCEPT_ID field in the MEASUREMENT table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"operator_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":638,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.55"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"4.376710 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = value_as_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.value_as_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.value_as_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.value_as_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VALUE_AS_CONCEPT_ID field in the MEASUREMENT table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"value_as_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":639,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.56"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"2.755151 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = unit_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.unit_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.unit_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.unit_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the UNIT_CONCEPT_ID field in the MEASUREMENT table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":640,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.57"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.868493 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = MEASUREMENT\ncdmFieldName = provider_id\nfkTableName = PROVIDER\nfkFieldName = PROVIDER_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.provider fktable\n\t\ton cdmtable.provider_id = fktable.provider_id\n\t\twhere fktable.provider_id is null and cdmtable.provider_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PROVIDER_ID field in the MEASUREMENT table that does not exist in the PROVIDER table.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"provider_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":641,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.58"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"2.221287 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = MEASUREMENT\ncdmFieldName = visit_occurrence_id\nfkTableName = VISIT_OCCURRENCE\nfkFieldName = VISIT_OCCURRENCE_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.visit_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.visit_occurrence fktable\n\t\ton cdmtable.visit_occurrence_id = fktable.visit_occurrence_id\n\t\twhere fktable.visit_occurrence_id is null and cdmtable.visit_occurrence_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_OCCURRENCE_ID field in the MEASUREMENT table that does not exist in the VISIT_OCCURRENCE table.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":642,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.59"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.702205 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = MEASUREMENT\ncdmFieldName = visit_detail_id\nfkTableName = VISIT_DETAIL\nfkFieldName = VISIT_DETAIL_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.visit_detail_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.visit_detail fktable\n\t\ton cdmtable.visit_detail_id = fktable.visit_detail_id\n\t\twhere fktable.visit_detail_id is null and cdmtable.visit_detail_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_DETAIL_ID field in the MEASUREMENT table that does not exist in the VISIT_DETAIL table.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":643,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.60"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"2.615743 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_source_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.measurement_source_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.measurement_source_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the MEASUREMENT_SOURCE_CONCEPT_ID field in the MEASUREMENT table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_source_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":644,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.61"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.899450 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = VISIT_DETAIL\ncdmFieldName = person_id\nfkTableName = PERSON\nfkFieldName = PERSON_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.person fktable\n\t\ton cdmtable.person_id = fktable.person_id\n\t\twhere fktable.person_id is null and cdmtable.person_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PERSON_ID field in the VISIT_DETAIL table that does not exist in the PERSON table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"person_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":645,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.62"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"3.161586 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.visit_detail_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.visit_detail_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_DETAIL_CONCEPT_ID field in the VISIT_DETAIL table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":646,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.63"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"2.915263 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_type_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.visit_detail_type_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.visit_detail_type_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_DETAIL_TYPE_CONCEPT_ID field in the VISIT_DETAIL table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_type_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":647,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.64"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.875127 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = VISIT_DETAIL\ncdmFieldName = provider_id\nfkTableName = PROVIDER\nfkFieldName = PROVIDER_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.provider fktable\n\t\ton cdmtable.provider_id = fktable.provider_id\n\t\twhere fktable.provider_id is null and cdmtable.provider_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PROVIDER_ID field in the VISIT_DETAIL table that does not exist in the PROVIDER table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"provider_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":648,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.65"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"2.050323 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = VISIT_DETAIL\ncdmFieldName = care_site_id\nfkTableName = CARE_SITE\nfkFieldName = CARE_SITE_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.care_site_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.care_site fktable\n\t\ton cdmtable.care_site_id = fktable.care_site_id\n\t\twhere fktable.care_site_id is null and cdmtable.care_site_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the CARE_SITE_ID field in the VISIT_DETAIL table that does not exist in the CARE_SITE table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":649,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.66"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"3.910361 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_source_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.visit_detail_source_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.visit_detail_source_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_DETAIL_SOURCE_CONCEPT_ID field in the VISIT_DETAIL table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_source_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":650,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.67"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"3.446400 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = admitting_source_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.admitting_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.admitting_source_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.admitting_source_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the ADMITTING_SOURCE_CONCEPT_ID field in the VISIT_DETAIL table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"admitting_source_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":651,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.68"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"3.207295 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = discharge_to_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.discharge_to_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.discharge_to_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.discharge_to_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DISCHARGE_TO_CONCEPT_ID field in the VISIT_DETAIL table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"discharge_to_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":652,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.69"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.697607 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = VISIT_DETAIL\ncdmFieldName = preceding_visit_detail_id\nfkTableName = VISIT_DETAIL\nfkFieldName = VISIT_DETAIL_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.preceding_visit_detail_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.visit_detail fktable\n\t\ton cdmtable.preceding_visit_detail_id = fktable.visit_detail_id\n\t\twhere fktable.visit_detail_id is null and cdmtable.preceding_visit_detail_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PRECEDING_VISIT_DETAIL_ID field in the VISIT_DETAIL table that does not exist in the VISIT_DETAIL table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"preceding_visit_detail_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":653,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.70"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.906443 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_parent_id\nfkTableName = VISIT_DETAIL\nfkFieldName = VISIT_DETAIL_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_parent_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.visit_detail fktable\n\t\ton cdmtable.visit_detail_parent_id = fktable.visit_detail_id\n\t\twhere fktable.visit_detail_id is null and cdmtable.visit_detail_parent_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_DETAIL_PARENT_ID field in the VISIT_DETAIL table that does not exist in the VISIT_DETAIL table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_parent_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":654,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.71"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.661499 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_occurrence_id\nfkTableName = VISIT_OCCURRENCE\nfkFieldName = VISIT_OCCURRENCE_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.visit_occurrence fktable\n\t\ton cdmtable.visit_occurrence_id = fktable.visit_occurrence_id\n\t\twhere fktable.visit_occurrence_id is null and cdmtable.visit_occurrence_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_OCCURRENCE_ID field in the VISIT_DETAIL table that does not exist in the VISIT_OCCURRENCE table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":655,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.72"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.820435 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = NOTE\ncdmFieldName = person_id\nfkTableName = PERSON\nfkFieldName = PERSON_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.person fktable\n\t\ton cdmtable.person_id = fktable.person_id\n\t\twhere fktable.person_id is null and cdmtable.person_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PERSON_ID field in the NOTE table that does not exist in the PERSON table.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"person_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":656,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.73"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.165378 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_type_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.note_type_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.note_type_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the NOTE_TYPE_CONCEPT_ID field in the NOTE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_type_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":657,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.74"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.782512 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_class_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_class_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.note_class_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.note_class_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the NOTE_CLASS_CONCEPT_ID field in the NOTE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_class_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":658,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.75"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.829755 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = encoding_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.encoding_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.encoding_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.encoding_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the ENCODING_CONCEPT_ID field in the NOTE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"encoding_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":659,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.76"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.893701 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = language_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.language_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.language_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.language_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the LANGUAGE_CONCEPT_ID field in the NOTE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"language_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":660,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.77"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.735642 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = NOTE\ncdmFieldName = provider_id\nfkTableName = PROVIDER\nfkFieldName = PROVIDER_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.provider fktable\n\t\ton cdmtable.provider_id = fktable.provider_id\n\t\twhere fktable.provider_id is null and cdmtable.provider_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PROVIDER_ID field in the NOTE table that does not exist in the PROVIDER table.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":661,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.78"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.435851 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = NOTE\ncdmFieldName = visit_occurrence_id\nfkTableName = VISIT_OCCURRENCE\nfkFieldName = VISIT_OCCURRENCE_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.visit_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.visit_occurrence fktable\n\t\ton cdmtable.visit_occurrence_id = fktable.visit_occurrence_id\n\t\twhere fktable.visit_occurrence_id is null and cdmtable.visit_occurrence_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_OCCURRENCE_ID field in the NOTE table that does not exist in the VISIT_OCCURRENCE table.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":662,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.79"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.736183 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = NOTE\ncdmFieldName = visit_detail_id\nfkTableName = VISIT_DETAIL\nfkFieldName = VISIT_DETAIL_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.visit_detail_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.visit_detail fktable\n\t\ton cdmtable.visit_detail_id = fktable.visit_detail_id\n\t\twhere fktable.visit_detail_id is null and cdmtable.visit_detail_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_DETAIL_ID field in the NOTE table that does not exist in the VISIT_DETAIL table.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":663,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.80"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.789153 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = NOTE_NLP\ncdmFieldName = note_id\nfkTableName = NOTE\nfkFieldName = NOTE_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.note_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.note fktable\n\t\ton cdmtable.note_id = fktable.note_id\n\t\twhere fktable.note_id is null and cdmtable.note_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the NOTE_ID field in the NOTE_NLP table that does not exist in the NOTE table.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"note_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":664,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.81"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.975596 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = section_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.section_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.section_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.section_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the SECTION_CONCEPT_ID field in the NOTE_NLP table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"section_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":665,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.82"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.320495 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = note_nlp_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.note_nlp_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.note_nlp_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.note_nlp_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the NOTE_NLP_CONCEPT_ID field in the NOTE_NLP table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"note_nlp_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":666,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.83"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.792499 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = note_nlp_source_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.note_nlp_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.note_nlp_source_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.note_nlp_source_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the NOTE_NLP_SOURCE_CONCEPT_ID field in the NOTE_NLP table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"note_nlp_source_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":667,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.84"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.724993 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = OBSERVATION\ncdmFieldName = person_id\nfkTableName = PERSON\nfkFieldName = PERSON_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.person fktable\n\t\ton cdmtable.person_id = fktable.person_id\n\t\twhere fktable.person_id is null and cdmtable.person_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PERSON_ID field in the OBSERVATION table that does not exist in the PERSON table.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"person_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":668,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.85"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.884457 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.observation_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.observation_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the OBSERVATION_CONCEPT_ID field in the OBSERVATION table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":669,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.86"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"3.276395 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_type_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.observation_type_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.observation_type_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the OBSERVATION_TYPE_CONCEPT_ID field in the OBSERVATION table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_type_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":670,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.87"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.739166 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = value_as_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.value_as_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.value_as_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.value_as_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VALUE_AS_CONCEPT_ID field in the OBSERVATION table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"value_as_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":671,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.88"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.953581 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = qualifier_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.qualifier_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.qualifier_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.qualifier_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the QUALIFIER_CONCEPT_ID field in the OBSERVATION table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"qualifier_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":672,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.89"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.883744 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = unit_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.unit_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.unit_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.unit_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the UNIT_CONCEPT_ID field in the OBSERVATION table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":673,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.90"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.792570 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = OBSERVATION\ncdmFieldName = provider_id\nfkTableName = PROVIDER\nfkFieldName = PROVIDER_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.provider fktable\n\t\ton cdmtable.provider_id = fktable.provider_id\n\t\twhere fktable.provider_id is null and cdmtable.provider_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PROVIDER_ID field in the OBSERVATION table that does not exist in the PROVIDER table.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"provider_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":674,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.91"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.314544 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = OBSERVATION\ncdmFieldName = visit_occurrence_id\nfkTableName = VISIT_OCCURRENCE\nfkFieldName = VISIT_OCCURRENCE_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.visit_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.visit_occurrence fktable\n\t\ton cdmtable.visit_occurrence_id = fktable.visit_occurrence_id\n\t\twhere fktable.visit_occurrence_id is null and cdmtable.visit_occurrence_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_OCCURRENCE_ID field in the OBSERVATION table that does not exist in the VISIT_OCCURRENCE table.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":675,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.92"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.952200 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = OBSERVATION\ncdmFieldName = visit_detail_id\nfkTableName = VISIT_DETAIL\nfkFieldName = VISIT_DETAIL_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.visit_detail_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.visit_detail fktable\n\t\ton cdmtable.visit_detail_id = fktable.visit_detail_id\n\t\twhere fktable.visit_detail_id is null and cdmtable.visit_detail_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_DETAIL_ID field in the OBSERVATION table that does not exist in the VISIT_DETAIL table.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":676,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.93"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.663407 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_source_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.observation_source_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.observation_source_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the OBSERVATION_SOURCE_CONCEPT_ID field in the OBSERVATION table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_source_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":677,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.94"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.808814 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = SPECIMEN\ncdmFieldName = person_id\nfkTableName = PERSON\nfkFieldName = PERSON_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.person fktable\n\t\ton cdmtable.person_id = fktable.person_id\n\t\twhere fktable.person_id is null and cdmtable.person_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PERSON_ID field in the SPECIMEN table that does not exist in the PERSON table.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"person_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":678,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.95"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"2.803790 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.specimen_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.specimen_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the SPECIMEN_CONCEPT_ID field in the SPECIMEN table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":679,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.96"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"3.272928 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_type_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.specimen_type_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.specimen_type_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the SPECIMEN_TYPE_CONCEPT_ID field in the SPECIMEN table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_type_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":680,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.97"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"2.921042 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = unit_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.unit_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.unit_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.unit_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the UNIT_CONCEPT_ID field in the SPECIMEN table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":681,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.98"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"3.123976 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = anatomic_site_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.anatomic_site_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.anatomic_site_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.anatomic_site_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the ANATOMIC_SITE_CONCEPT_ID field in the SPECIMEN table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"anatomic_site_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":682,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.99"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"3.226429 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = disease_status_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.disease_status_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.disease_status_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.disease_status_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DISEASE_STATUS_CONCEPT_ID field in the SPECIMEN table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"disease_status_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":683,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.100"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"2.947172 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = domain_concept_id_1\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.domain_concept_id_1' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.domain_concept_id_1 = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.domain_concept_id_1 is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DOMAIN_CONCEPT_ID_1 field in the FACT_RELATIONSHIP table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"domain_concept_id_1","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":684,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.101"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"2.964409 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = domain_concept_id_2\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.domain_concept_id_2' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.domain_concept_id_2 = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.domain_concept_id_2 is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DOMAIN_CONCEPT_ID_2 field in the FACT_RELATIONSHIP table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"domain_concept_id_2","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":685,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.102"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"2.700424 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = relationship_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.relationship_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.relationship_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.relationship_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the RELATIONSHIP_CONCEPT_ID field in the FACT_RELATIONSHIP table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"relationship_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":686,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.103"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":31,"EXECUTION_TIME":"2.539152 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CARE_SITE\ncdmFieldName = place_of_service_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CARE_SITE.place_of_service_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.place_of_service_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.place_of_service_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PLACE_OF_SERVICE_CONCEPT_ID field in the CARE_SITE table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"place_of_service_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":687,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.104"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":31,"EXECUTION_TIME":"1.748452 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = CARE_SITE\ncdmFieldName = location_id\nfkTableName = LOCATION\nfkFieldName = LOCATION_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CARE_SITE.location_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.location fktable\n\t\ton cdmtable.location_id = fktable.location_id\n\t\twhere fktable.location_id is null and cdmtable.location_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the LOCATION_ID field in the CARE_SITE table that does not exist in the LOCATION table.","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"location_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":688,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.105"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.887619 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = specialty_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.specialty_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.specialty_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.specialty_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the SPECIALTY_CONCEPT_ID field in the PROVIDER table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"specialty_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":689,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.106"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.865837 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = PROVIDER\ncdmFieldName = care_site_id\nfkTableName = CARE_SITE\nfkFieldName = CARE_SITE_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.care_site_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.care_site fktable\n\t\ton cdmtable.care_site_id = fktable.care_site_id\n\t\twhere fktable.care_site_id is null and cdmtable.care_site_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the CARE_SITE_ID field in the PROVIDER table that does not exist in the CARE_SITE table.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":690,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.107"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.701196 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = gender_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.gender_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.gender_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.gender_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the GENDER_CONCEPT_ID field in the PROVIDER table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"gender_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":691,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.108"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.075140 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = specialty_source_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.specialty_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.specialty_source_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.specialty_source_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the SPECIALTY_SOURCE_CONCEPT_ID field in the PROVIDER table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"specialty_source_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":692,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.109"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.869039 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = gender_source_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.gender_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.gender_source_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.gender_source_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the GENDER_SOURCE_CONCEPT_ID field in the PROVIDER table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"gender_source_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":693,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.110"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.759281 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_plan_period_id\nfkTableName = PERSON\nfkFieldName = PERSON_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.payer_plan_period_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.person fktable\n\t\ton cdmtable.payer_plan_period_id = fktable.person_id\n\t\twhere fktable.person_id is null and cdmtable.payer_plan_period_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PAYER_PLAN_PERIOD_ID field in the PAYER_PLAN_PERIOD table that does not exist in the PERSON table.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_plan_period_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":694,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.111"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.215805 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = person_id\nfkTableName = PERSON\nfkFieldName = PERSON_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.person fktable\n\t\ton cdmtable.person_id = fktable.person_id\n\t\twhere fktable.person_id is null and cdmtable.person_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PERSON_ID field in the PAYER_PLAN_PERIOD table that does not exist in the PERSON table.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"person_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":695,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.112"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.727696 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.payer_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.payer_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.payer_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PAYER_CONCEPT_ID field in the PAYER_PLAN_PERIOD table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":696,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.113"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.991688 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_source_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.payer_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.payer_source_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.payer_source_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PAYER_SOURCE_CONCEPT_ID field in the PAYER_PLAN_PERIOD table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_source_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":697,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.114"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.867756 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = plan_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.plan_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.plan_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.plan_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PLAN_CONCEPT_ID field in the PAYER_PLAN_PERIOD table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"plan_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":698,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.115"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.970393 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = plan_source_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.plan_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.plan_source_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.plan_source_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PLAN_SOURCE_CONCEPT_ID field in the PAYER_PLAN_PERIOD table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"plan_source_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":699,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.116"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.074586 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = sponsor_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.sponsor_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.sponsor_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.sponsor_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the SPONSOR_CONCEPT_ID field in the PAYER_PLAN_PERIOD table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"sponsor_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":700,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.117"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.904465 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = sponsor_source_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.sponsor_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.sponsor_source_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.sponsor_source_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the SPONSOR_SOURCE_CONCEPT_ID field in the PAYER_PLAN_PERIOD table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"sponsor_source_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":701,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.118"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.735426 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = stop_reason_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.stop_reason_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.stop_reason_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.stop_reason_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the STOP_REASON_CONCEPT_ID field in the PAYER_PLAN_PERIOD table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"stop_reason_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":702,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.119"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.685292 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = stop_reason_source_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.stop_reason_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.stop_reason_source_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.stop_reason_source_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the STOP_REASON_SOURCE_CONCEPT_ID field in the PAYER_PLAN_PERIOD table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"stop_reason_source_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":703,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.120"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.796240 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = cost_domain_id\nfkTableName = DOMAIN\nfkFieldName = DOMAIN_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.cost_domain_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.domain fktable\n\t\ton cdmtable.cost_domain_id = fktable.domain_id\n\t\twhere fktable.domain_id is null and cdmtable.cost_domain_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the COST_DOMAIN_ID field in the COST table that does not exist in the DOMAIN table.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"cost_domain_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":704,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.121"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.933171 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = cost_type_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.cost_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.cost_type_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.cost_type_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the COST_TYPE_CONCEPT_ID field in the COST table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"cost_type_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":705,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.122"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.065845 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = currency_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.currency_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.currency_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.currency_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the CURRENCY_CONCEPT_ID field in the COST table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"currency_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":706,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.123"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.850709 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = paid_patient_copay\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.paid_patient_copay' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.paid_patient_copay = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.paid_patient_copay is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PAID_PATIENT_COPAY field in the COST table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"paid_patient_copay","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":707,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.124"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.949657 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = COST\ncdmFieldName = payer_plan_period_id\nfkTableName = PAYER_PLAN_PERIOD\nfkFieldName = PAYER_PLAN_PERIOD_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.payer_plan_period_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.payer_plan_period fktable\n\t\ton cdmtable.payer_plan_period_id = fktable.payer_plan_period_id\n\t\twhere fktable.payer_plan_period_id is null and cdmtable.payer_plan_period_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PAYER_PLAN_PERIOD_ID field in the COST table that does not exist in the PAYER_PLAN_PERIOD table.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"payer_plan_period_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":708,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.125"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.001889 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = revenue_code_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.revenue_code_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.revenue_code_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.revenue_code_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the REVENUE_CODE_CONCEPT_ID field in the COST table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"revenue_code_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":709,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.126"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.920158 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = drg_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.drg_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.drg_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.drg_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DRG_CONCEPT_ID field in the COST table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"drg_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":710,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.127"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.803364 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = DRUG_ERA\ncdmFieldName = person_id\nfkTableName = PERSON\nfkFieldName = PERSON_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.person fktable\n\t\ton cdmtable.person_id = fktable.person_id\n\t\twhere fktable.person_id is null and cdmtable.person_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PERSON_ID field in the DRUG_ERA table that does not exist in the PERSON table.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"person_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":711,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.128"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"3.365340 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.drug_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.drug_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DRUG_CONCEPT_ID field in the DRUG_ERA table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":712,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.129"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"2.003730 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = DOSE_ERA\ncdmFieldName = person_id\nfkTableName = PERSON\nfkFieldName = PERSON_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.person fktable\n\t\ton cdmtable.person_id = fktable.person_id\n\t\twhere fktable.person_id is null and cdmtable.person_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PERSON_ID field in the DOSE_ERA table that does not exist in the PERSON table.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"person_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":713,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.130"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"3.012895 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = drug_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.drug_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.drug_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.drug_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DRUG_CONCEPT_ID field in the DOSE_ERA table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":714,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.131"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"3.037495 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = unit_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.unit_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.unit_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.unit_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the UNIT_CONCEPT_ID field in the DOSE_ERA table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":715,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.132"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"2.034729 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\n\ncdmTableName = CONDITION_ERA\ncdmFieldName = person_id\nfkTableName = PERSON\nfkFieldName = PERSON_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.person fktable\n\t\ton cdmtable.person_id = fktable.person_id\n\t\twhere fktable.person_id is null and cdmtable.person_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PERSON_ID field in the CONDITION_ERA table that does not exist in the PERSON table.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"person_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":716,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.133"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"3.435139 secs","QUERY_TEXT":"\n/*********\nIS_FOREIGN_KEY\nForeign key check\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_concept_id\nfkTableName = CONCEPT\nfkFieldName = CONCEPT_ID\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t\n\t\tleft join mimiciv_demo_current_cdm_531.concept fktable\n\t\ton cdmtable.condition_concept_id = fktable.concept_id\n\t\twhere fktable.concept_id is null and cdmtable.condition_concept_id is not null \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isForeignKey","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the CONDITION_CONCEPT_ID field in the CONDITION_ERA table that does not exist in the CONCEPT table.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_concept_id","SQL_FILE":"is_foreign_key.sql","CATEGORY":"Conformance","SUBCATEGORY":"Relational","CONTEXT":"Verification","checkId":717,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"6.134"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.902358 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = gender_concept_id\nfkDomain = Gender\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.gender_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.gender_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Gender'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the GENDER_CONCEPT_ID field in the PERSON table that do not conform to the GENDER domain.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"gender_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":718,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.1"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.357154 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = race_concept_id\nfkDomain = Race\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.race_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.race_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Race'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the RACE_CONCEPT_ID field in the PERSON table that do not conform to the RACE domain.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"race_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":719,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.2"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.483909 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = ethnicity_concept_id\nfkDomain = Ethnicity\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.ethnicity_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.ethnicity_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Ethnicity'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the ETHNICITY_CONCEPT_ID field in the PERSON table that do not conform to the ETHNICITY domain.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"ethnicity_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":720,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.3"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.270373 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = period_type_concept_id\nfkDomain = Type Concept\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.period_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.period_type_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Type Concept'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PERIOD_TYPE_CONCEPT_ID field in the OBSERVATION_PERIOD table that do not conform to the TYPE CONCEPT domain.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"period_type_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":721,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.4"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.986635 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_concept_id\nfkDomain = Visit\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.visit_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Visit'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_CONCEPT_ID field in the VISIT_OCCURRENCE table that do not conform to the VISIT domain.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":722,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.5"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.969817 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_type_concept_id\nfkDomain = Type Concept\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.visit_type_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Type Concept'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_TYPE_CONCEPT_ID field in the VISIT_OCCURRENCE table that do not conform to the TYPE CONCEPT domain.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_type_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":723,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.6"},{"NUM_VIOLATED_ROWS":5,"PCT_VIOLATED_ROWS":0.0059,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.543492 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = admitting_source_concept_id\nfkDomain = Visit\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.admitting_source_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.admitting_source_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Visit'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the ADMITTING_SOURCE_CONCEPT_ID field in the VISIT_OCCURRENCE table that do not conform to the VISIT domain.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"admitting_source_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":724,"FAILED":1,"THRESHOLD_VALUE":0,"_row":"7.7"},{"NUM_VIOLATED_ROWS":19,"PCT_VIOLATED_ROWS":0.0223,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.877474 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = discharge_to_concept_id\nfkDomain = Visit\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.discharge_to_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.discharge_to_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Visit'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DISCHARGE_TO_CONCEPT_ID field in the VISIT_OCCURRENCE table that do not conform to the VISIT domain.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"discharge_to_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":725,"FAILED":1,"THRESHOLD_VALUE":0,"_row":"7.8"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"2.375651 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_concept_id\nfkDomain = Condition\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.condition_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Condition'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the CONDITION_CONCEPT_ID field in the CONDITION_OCCURRENCE table that do not conform to the CONDITION domain.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":726,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.9"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"2.048662 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_type_concept_id\nfkDomain = Type Concept\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.condition_type_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Type Concept'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the CONDITION_TYPE_CONCEPT_ID field in the CONDITION_OCCURRENCE table that do not conform to the TYPE CONCEPT domain.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_type_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":727,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.10"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.167561 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_concept_id\nfkDomain = Drug\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.drug_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Drug'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DRUG_CONCEPT_ID field in the DRUG_EXPOSURE table that do not conform to the DRUG domain.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":728,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.11"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.310951 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_type_concept_id\nfkDomain = Type Concept\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.drug_type_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Type Concept'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DRUG_TYPE_CONCEPT_ID field in the DRUG_EXPOSURE table that do not conform to the TYPE CONCEPT domain.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_type_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":729,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.12"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.165042 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = route_concept_id\nfkDomain = Route\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.route_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.route_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Route'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the ROUTE_CONCEPT_ID field in the DRUG_EXPOSURE table that do not conform to the ROUTE domain.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"route_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":730,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.13"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"2.174946 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_concept_id\nfkDomain = Procedure\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.procedure_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Procedure'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PROCEDURE_CONCEPT_ID field in the PROCEDURE_OCCURRENCE table that do not conform to the PROCEDURE domain.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":731,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.14"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"2.056340 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_type_concept_id\nfkDomain = Type Concept\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.procedure_type_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Type Concept'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the PROCEDURE_TYPE_CONCEPT_ID field in the PROCEDURE_OCCURRENCE table that do not conform to the TYPE CONCEPT domain.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_type_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":732,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.15"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"2.390056 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_concept_id\nfkDomain = Device\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.device_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Device'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DEVICE_CONCEPT_ID field in the DEVICE_EXPOSURE table that do not conform to the DEVICE domain.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":733,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.16"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"2.472384 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_type_concept_id\nfkDomain = Type Concept\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.device_type_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Type Concept'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DEVICE_TYPE_CONCEPT_ID field in the DEVICE_EXPOSURE table that do not conform to the TYPE CONCEPT domain.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_type_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":734,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.17"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"2.141181 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_concept_id\nfkDomain = Measurement\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.measurement_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Measurement'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the MEASUREMENT_CONCEPT_ID field in the MEASUREMENT table that do not conform to the MEASUREMENT domain.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":735,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.18"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"2.247888 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_type_concept_id\nfkDomain = Type Concept\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.measurement_type_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Type Concept'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the MEASUREMENT_TYPE_CONCEPT_ID field in the MEASUREMENT table that do not conform to the TYPE CONCEPT domain.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_type_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":736,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.19"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"2.383365 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = unit_concept_id\nfkDomain = Unit\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.unit_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.unit_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Unit'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the UNIT_CONCEPT_ID field in the MEASUREMENT table that do not conform to the UNIT domain.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":737,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.20"},{"NUM_VIOLATED_ROWS":505,"PCT_VIOLATED_ROWS":0.0349,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"2.159119 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_concept_id\nfkDomain = Visit\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.visit_detail_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Visit'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_DETAIL_CONCEPT_ID field in the VISIT_DETAIL table that do not conform to the VISIT domain.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":738,"FAILED":1,"THRESHOLD_VALUE":0,"_row":"7.21"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.985265 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_type_concept_id\nfkDomain = Type Concept\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.visit_detail_type_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Type Concept'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the VISIT_DETAIL_TYPE_CONCEPT_ID field in the VISIT_DETAIL table that do not conform to the TYPE CONCEPT domain.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_type_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":739,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.22"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.994949 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_type_concept_id\nfkDomain = Type Concept\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.note_type_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Type Concept'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the NOTE_TYPE_CONCEPT_ID field in the NOTE table that do not conform to the TYPE CONCEPT domain.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_type_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":740,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.23"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.904410 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_type_concept_id\nfkDomain = Type Concept\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.observation_type_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Type Concept'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the OBSERVATION_TYPE_CONCEPT_ID field in the OBSERVATION table that do not conform to the TYPE CONCEPT domain.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_type_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":741,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.24"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.437481 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = unit_concept_id\nfkDomain = Unit\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.unit_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.unit_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Unit'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the UNIT_CONCEPT_ID field in the OBSERVATION table that do not conform to the UNIT domain.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":742,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.25"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"2.305098 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_type_concept_id\nfkDomain = Type Concept\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.specimen_type_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Type Concept'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the SPECIMEN_TYPE_CONCEPT_ID field in the SPECIMEN table that do not conform to the TYPE CONCEPT domain.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_type_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":743,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.26"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.705662 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = gender_concept_id\nfkDomain = Gender\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.gender_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.gender_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Gender'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the GENDER_CONCEPT_ID field in the PROVIDER table that do not conform to the GENDER domain.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"gender_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":744,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.27"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.974537 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_concept_id\nfkDomain = Drug\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.drug_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Drug'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DRUG_CONCEPT_ID field in the DRUG_ERA table that do not conform to the DRUG domain.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":745,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.28"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"2.092203 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = drug_concept_id\nfkDomain = Drug\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.drug_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.drug_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Drug'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DRUG_CONCEPT_ID field in the DOSE_ERA table that do not conform to the DRUG domain.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":746,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.29"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"1.742266 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = unit_concept_id\nfkDomain = Unit\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.unit_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.unit_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Unit'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the UNIT_CONCEPT_ID field in the DOSE_ERA table that do not conform to the UNIT domain.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":747,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.30"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"2.009449 secs","QUERY_TEXT":"\n/*********\nFIELD_FK_DOMAIN\n\nall standard concept ids are part of specified domain\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_concept_id\nfkDomain = Condition\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t  left join mimiciv_demo_current_cdm_531.concept co\n\t\t    on cdmtable.condition_concept_id = co.concept_id\n\t\t  \n\t\t where co.concept_id != 0 and co.domain_id != 'Condition'\n\t\t  \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"fkDomain","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the CONDITION_CONCEPT_ID field in the CONDITION_ERA table that do not conform to the CONDITION domain.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_concept_id","SQL_FILE":"field_fk_domain.sql","CATEGORY":"Conformance","SUBCATEGORY":"Value","CONTEXT":"Verification","checkId":748,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"7.31"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"2.297439 secs","QUERY_TEXT":"\n/*********\nFK_CLASS\nDrug era standard concepts, ingredients only\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_concept_id\nfkClass = Ingredient\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\tleft join mimiciv_demo_current_cdm_531.concept co\n\t\ton cdmtable.drug_concept_id = co.concept_id\n\t\t\n    where co.concept_id != 0 and (co.concept_class_id != 'Ingredient') \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"fkClass","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DRUG_CONCEPT_ID field in the DRUG_ERA table that do not conform to the INGREDIENT class.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_fk_class.sql","CATEGORY":"Conformance","SUBCATEGORY":"Computational","CONTEXT":"Verification","checkId":749,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"8.1"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"2.135766 secs","QUERY_TEXT":"\n/*********\nFK_CLASS\nDrug era standard concepts, ingredients only\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = drug_concept_id\nfkClass = Ingredient\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.drug_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\tleft join mimiciv_demo_current_cdm_531.concept co\n\t\ton cdmtable.drug_concept_id = co.concept_id\n\t\t\n    where co.concept_id != 0 and (co.concept_class_id != 'Ingredient') \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"fkClass","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that have a value in the DRUG_CONCEPT_ID field in the DOSE_ERA table that do not conform to the INGREDIENT class.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_fk_class.sql","CATEGORY":"Conformance","SUBCATEGORY":"Computational","CONTEXT":"Verification","checkId":750,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"8.2"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.982973 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = gender_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.gender_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.gender_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the GENDER_CONCEPT_ID field in the PERSON table. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"gender_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":751,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.1"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.057485 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = race_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.race_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.race_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the RACE_CONCEPT_ID field in the PERSON table. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"race_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":752,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.2"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.169730 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = ethnicity_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.ethnicity_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.person cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.ethnicity_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the ETHNICITY_CONCEPT_ID field in the PERSON table. ","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"ethnicity_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":753,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.3"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.233563 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = period_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.period_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.period_type_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the PERIOD_TYPE_CONCEPT_ID field in the OBSERVATION_PERIOD table. ","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"period_type_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":754,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.4"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.016112 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.visit_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the VISIT_CONCEPT_ID field in the VISIT_OCCURRENCE table. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":755,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.5"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.050377 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.visit_type_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the VISIT_TYPE_CONCEPT_ID field in the VISIT_OCCURRENCE table. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_type_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":756,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.6"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.212040 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = admitting_source_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.admitting_source_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.admitting_source_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the ADMITTING_SOURCE_CONCEPT_ID field in the VISIT_OCCURRENCE table. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"admitting_source_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":757,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.7"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.154139 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = discharge_to_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.discharge_to_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.discharge_to_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the DISCHARGE_TO_CONCEPT_ID field in the VISIT_OCCURRENCE table. ","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"discharge_to_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":758,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.8"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"2.377398 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.condition_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the CONDITION_CONCEPT_ID field in the CONDITION_OCCURRENCE table. ","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":759,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.9"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"2.320255 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.condition_type_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the CONDITION_TYPE_CONCEPT_ID field in the CONDITION_OCCURRENCE table. ","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_type_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":760,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.10"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"2.063389 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_status_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_status_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.condition_status_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the CONDITION_STATUS_CONCEPT_ID field in the CONDITION_OCCURRENCE table. ","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_status_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":761,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.11"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.213169 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.drug_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the DRUG_CONCEPT_ID field in the DRUG_EXPOSURE table. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":762,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.12"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.398486 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.drug_type_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the DRUG_TYPE_CONCEPT_ID field in the DRUG_EXPOSURE table. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_type_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":763,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.13"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.408860 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = route_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.route_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.route_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the ROUTE_CONCEPT_ID field in the DRUG_EXPOSURE table. ","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"route_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":764,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.14"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"2.465290 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.procedure_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the PROCEDURE_CONCEPT_ID field in the PROCEDURE_OCCURRENCE table. ","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":765,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.15"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"2.631739 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.procedure_type_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the PROCEDURE_TYPE_CONCEPT_ID field in the PROCEDURE_OCCURRENCE table. ","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_type_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":766,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.16"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"2.005168 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = modifier_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.modifier_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.modifier_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the MODIFIER_CONCEPT_ID field in the PROCEDURE_OCCURRENCE table. ","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"modifier_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":767,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.17"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"2.041189 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.device_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the DEVICE_CONCEPT_ID field in the DEVICE_EXPOSURE table. ","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":768,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.18"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"2.425786 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.device_type_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the DEVICE_TYPE_CONCEPT_ID field in the DEVICE_EXPOSURE table. ","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_type_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":769,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.19"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"2.544877 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.measurement_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the MEASUREMENT_CONCEPT_ID field in the MEASUREMENT table. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":770,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.20"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"2.029916 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.measurement_type_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the MEASUREMENT_TYPE_CONCEPT_ID field in the MEASUREMENT table. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_type_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":771,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.21"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"2.505256 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = operator_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.operator_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.operator_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the OPERATOR_CONCEPT_ID field in the MEASUREMENT table. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"operator_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":772,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.22"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"2.613433 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = unit_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.unit_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.unit_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the UNIT_CONCEPT_ID field in the MEASUREMENT table. ","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":773,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.23"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"2.343645 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.visit_detail_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the VISIT_DETAIL_CONCEPT_ID field in the VISIT_DETAIL table. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":774,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.24"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"2.120997 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.visit_detail_type_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the VISIT_DETAIL_TYPE_CONCEPT_ID field in the VISIT_DETAIL table. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_type_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":775,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.25"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"2.283510 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = admitting_source_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.admitting_source_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.admitting_source_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the ADMITTING_SOURCE_CONCEPT_ID field in the VISIT_DETAIL table. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"admitting_source_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":776,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.26"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"2.031526 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = discharge_to_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.discharge_to_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.discharge_to_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the DISCHARGE_TO_CONCEPT_ID field in the VISIT_DETAIL table. ","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"discharge_to_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":777,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.27"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.753357 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.note_type_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the NOTE_TYPE_CONCEPT_ID field in the NOTE table. ","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_type_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":778,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.28"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.329494 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_class_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_class_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.note_class_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the NOTE_CLASS_CONCEPT_ID field in the NOTE table. ","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_class_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":779,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.29"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.375956 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = encoding_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.encoding_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.encoding_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the ENCODING_CONCEPT_ID field in the NOTE table. ","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"encoding_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":780,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.30"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.306917 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = language_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.language_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.language_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the LANGUAGE_CONCEPT_ID field in the NOTE table. ","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"language_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":781,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.31"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.757394 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = section_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.section_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.section_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the SECTION_CONCEPT_ID field in the NOTE_NLP table. ","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"section_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":782,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.32"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.329396 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = note_nlp_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.note_nlp_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.note_nlp_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the NOTE_NLP_CONCEPT_ID field in the NOTE_NLP table. ","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"note_nlp_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":783,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.33"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.009399 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.observation_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the OBSERVATION_CONCEPT_ID field in the OBSERVATION table. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":784,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.34"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.423537 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.observation_type_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the OBSERVATION_TYPE_CONCEPT_ID field in the OBSERVATION table. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_type_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":785,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.35"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.205658 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = qualifier_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.qualifier_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.qualifier_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the QUALIFIER_CONCEPT_ID field in the OBSERVATION table. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"qualifier_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":786,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.36"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.227219 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = unit_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.unit_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.unit_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the UNIT_CONCEPT_ID field in the OBSERVATION table. ","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":787,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.37"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"2.358935 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.specimen_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the SPECIMEN_CONCEPT_ID field in the SPECIMEN table. ","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":788,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.38"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"2.024186 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.specimen_type_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the SPECIMEN_TYPE_CONCEPT_ID field in the SPECIMEN table. ","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_type_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":789,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.39"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"2.228900 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = unit_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.unit_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.unit_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the UNIT_CONCEPT_ID field in the SPECIMEN table. ","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":790,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.40"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"2.060750 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = anatomic_site_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.anatomic_site_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.anatomic_site_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the ANATOMIC_SITE_CONCEPT_ID field in the SPECIMEN table. ","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"anatomic_site_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":791,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.41"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"2.978542 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = disease_status_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.disease_status_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.disease_status_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the DISEASE_STATUS_CONCEPT_ID field in the SPECIMEN table. ","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"disease_status_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":792,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.42"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":31,"EXECUTION_TIME":"3.137988 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CARE_SITE\ncdmFieldName = place_of_service_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CARE_SITE.place_of_service_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.place_of_service_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the PLACE_OF_SERVICE_CONCEPT_ID field in the CARE_SITE table. ","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"place_of_service_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":793,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.43"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.378106 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = specialty_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.specialty_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.specialty_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the SPECIALTY_CONCEPT_ID field in the PROVIDER table. ","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"specialty_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":794,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.44"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.340199 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = gender_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.gender_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.gender_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the GENDER_CONCEPT_ID field in the PROVIDER table. ","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"gender_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":795,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.45"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.671726 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = cost_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.cost_type_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.cost_type_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the COST_TYPE_CONCEPT_ID field in the COST table. ","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"cost_type_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":796,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.46"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"2.330243 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.drug_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the DRUG_CONCEPT_ID field in the DRUG_ERA table. ","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":797,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.47"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"2.332572 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = drug_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.drug_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.drug_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the DRUG_CONCEPT_ID field in the DOSE_ERA table. ","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":798,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.48"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"1.986552 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = unit_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.unit_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.unit_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the UNIT_CONCEPT_ID field in the DOSE_ERA table. ","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":799,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.49"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"2.328146 secs","QUERY_TEXT":"\n/*********\nFIELD_IS_STANDARD_VALID_CONCEPT\n\nall standard concept id fields are standard and valid\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\nvocabDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_concept_id' as violating_field, cdmtable.* \n\t\t  from mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t  \n\t\t  join mimiciv_demo_current_cdm_531.concept co on cdmtable.condition_concept_id = co.concept_id\n\t\t  where co.concept_id != 0 and (co.standard_concept != 'S' or co.invalid_reason is not null ) \n  ) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n) denominator\n;","CHECK_NAME":"isStandardValidConcept","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records that do not have a standard, valid concept in the CONDITION_CONCEPT_ID field in the CONDITION_ERA table. ","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_concept_id","SQL_FILE":"field_is_standard_valid_concept.sql","CATEGORY":"Conformance","SUBCATEGORY":"","CONTEXT":"Verification","checkId":800,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"9.50"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.790629 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the PERSON.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":801,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.1"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.464706 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = gender_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.gender_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.gender_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the GENDER_CONCEPT_ID of the PERSON.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"gender_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":802,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.2"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.725706 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = year_of_birth\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.year_of_birth' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.year_of_birth is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the YEAR_OF_BIRTH of the PERSON.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"year_of_birth","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":803,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.3"},{"NUM_VIOLATED_ROWS":100,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.714586 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = month_of_birth\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.month_of_birth' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.month_of_birth is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the MONTH_OF_BIRTH of the PERSON.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"month_of_birth","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":804,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.4"},{"NUM_VIOLATED_ROWS":100,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.205150 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = day_of_birth\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.day_of_birth' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.day_of_birth is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DAY_OF_BIRTH of the PERSON.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"day_of_birth","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":805,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.5"},{"NUM_VIOLATED_ROWS":100,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.952505 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = birth_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.birth_datetime' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.birth_datetime is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the BIRTH_DATETIME of the PERSON.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"birth_datetime","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":806,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.6"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.030330 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = race_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.race_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.race_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the RACE_CONCEPT_ID of the PERSON.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"race_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":807,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.7"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.889025 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = ethnicity_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.ethnicity_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.ethnicity_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the ETHNICITY_CONCEPT_ID of the PERSON.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"ethnicity_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":808,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.8"},{"NUM_VIOLATED_ROWS":100,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.817770 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = location_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.location_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.location_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the LOCATION_ID of the PERSON.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"location_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":809,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.9"},{"NUM_VIOLATED_ROWS":100,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.253264 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.provider_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROVIDER_ID of the PERSON.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":810,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.10"},{"NUM_VIOLATED_ROWS":100,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"3.350211 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = care_site_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.care_site_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.care_site_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CARE_SITE_ID of the PERSON.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":811,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.11"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.907412 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = person_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.person_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.person_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_SOURCE_VALUE of the PERSON.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"person_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":812,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.12"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.122190 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = gender_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.gender_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.gender_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the GENDER_SOURCE_VALUE of the PERSON.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"gender_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":813,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.13"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.484263 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = gender_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.gender_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.gender_source_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the GENDER_SOURCE_CONCEPT_ID of the PERSON.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"gender_source_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":814,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.14"},{"NUM_VIOLATED_ROWS":5,"PCT_VIOLATED_ROWS":0.05,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.914365 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = race_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.race_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.race_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the RACE_SOURCE_VALUE of the PERSON.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"race_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":815,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.15"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.545782 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = race_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.race_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.race_source_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the RACE_SOURCE_CONCEPT_ID of the PERSON.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"race_source_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":816,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.16"},{"NUM_VIOLATED_ROWS":95,"PCT_VIOLATED_ROWS":0.95,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.686772 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = ethnicity_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.ethnicity_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.ethnicity_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the ETHNICITY_SOURCE_VALUE of the PERSON.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"ethnicity_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":817,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.17"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.726611 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = ethnicity_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.ethnicity_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.ethnicity_source_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the ETHNICITY_SOURCE_CONCEPT_ID of the PERSON.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"ethnicity_source_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":818,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.18"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.878830 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = observation_period_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.observation_period_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\t\n\t\twhere cdmtable.observation_period_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the OBSERVATION_PERIOD_ID of the OBSERVATION_PERIOD.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"observation_period_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":819,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.19"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.505125 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\t\n\t\twhere cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the OBSERVATION_PERIOD.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":820,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.20"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.954862 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = observation_period_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.observation_period_start_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\t\n\t\twhere cdmtable.observation_period_start_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the OBSERVATION_PERIOD_START_DATE of the OBSERVATION_PERIOD.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"observation_period_start_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":821,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.21"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.773326 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = observation_period_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.observation_period_end_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\t\n\t\twhere cdmtable.observation_period_end_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the OBSERVATION_PERIOD_END_DATE of the OBSERVATION_PERIOD.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"observation_period_end_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":822,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.22"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.758983 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = period_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.period_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\t\n\t\twhere cdmtable.period_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERIOD_TYPE_CONCEPT_ID of the OBSERVATION_PERIOD.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"period_type_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":823,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.23"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.772241 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.visit_occurrence_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_OCCURRENCE_ID of the VISIT_OCCURRENCE.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":824,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.24"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.753030 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the VISIT_OCCURRENCE.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":825,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.25"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.488204 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.visit_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_CONCEPT_ID of the VISIT_OCCURRENCE.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":826,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.26"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.672689 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_start_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.visit_start_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_START_DATE of the VISIT_OCCURRENCE.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_start_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":827,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.27"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.904271 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_start_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_start_datetime' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.visit_start_datetime is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_START_DATETIME of the VISIT_OCCURRENCE.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_start_datetime","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":828,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.28"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.471439 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_end_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.visit_end_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_END_DATE of the VISIT_OCCURRENCE.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_end_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":829,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.29"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.674879 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_end_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_end_datetime' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.visit_end_datetime is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_END_DATETIME of the VISIT_OCCURRENCE.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_end_datetime","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":830,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.30"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.181996 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.visit_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_TYPE_CONCEPT_ID of the VISIT_OCCURRENCE.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_type_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":831,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.31"},{"NUM_VIOLATED_ROWS":852,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.995093 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.provider_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROVIDER_ID of the VISIT_OCCURRENCE.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":832,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.32"},{"NUM_VIOLATED_ROWS":852,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.848557 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = care_site_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.care_site_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.care_site_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CARE_SITE_ID of the VISIT_OCCURRENCE.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":833,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.33"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.581336 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.visit_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_SOURCE_VALUE of the VISIT_OCCURRENCE.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":834,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.34"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.587121 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.visit_source_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_SOURCE_CONCEPT_ID of the VISIT_OCCURRENCE.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_source_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":835,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.35"},{"NUM_VIOLATED_ROWS":577,"PCT_VIOLATED_ROWS":0.6772,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.093646 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = admitting_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.admitting_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.admitting_source_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the ADMITTING_SOURCE_CONCEPT_ID of the VISIT_OCCURRENCE.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"admitting_source_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":836,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.36"},{"NUM_VIOLATED_ROWS":577,"PCT_VIOLATED_ROWS":0.6772,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.708316 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = admitting_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.admitting_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.admitting_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the ADMITTING_SOURCE_VALUE of the VISIT_OCCURRENCE.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"admitting_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":837,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.37"},{"NUM_VIOLATED_ROWS":619,"PCT_VIOLATED_ROWS":0.7265,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.407062 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = discharge_to_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.discharge_to_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.discharge_to_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DISCHARGE_TO_CONCEPT_ID of the VISIT_OCCURRENCE.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"discharge_to_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":838,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.38"},{"NUM_VIOLATED_ROWS":619,"PCT_VIOLATED_ROWS":0.7265,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.989862 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = discharge_to_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.discharge_to_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.discharge_to_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DISCHARGE_TO_SOURCE_VALUE of the VISIT_OCCURRENCE.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"discharge_to_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":839,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.39"},{"NUM_VIOLATED_ROWS":338,"PCT_VIOLATED_ROWS":0.3967,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.870527 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = preceding_visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.preceding_visit_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.preceding_visit_occurrence_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PRECEDING_VISIT_OCCURRENCE_ID of the VISIT_OCCURRENCE.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"preceding_visit_occurrence_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":840,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.40"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.682485 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.condition_occurrence_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_OCCURRENCE_ID of the CONDITION_OCCURRENCE.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_occurrence_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":841,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.41"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.774522 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the CONDITION_OCCURRENCE.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":842,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.42"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.457051 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.condition_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_CONCEPT_ID of the CONDITION_OCCURRENCE.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":843,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.43"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.840823 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_start_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.condition_start_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_START_DATE of the CONDITION_OCCURRENCE.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_start_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":844,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.44"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.840995 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_start_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_start_datetime' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.condition_start_datetime is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_START_DATETIME of the CONDITION_OCCURRENCE.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_start_datetime","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":845,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.45"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.871301 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_end_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.condition_end_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_END_DATE of the CONDITION_OCCURRENCE.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_end_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":846,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.46"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.687228 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_end_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_end_datetime' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.condition_end_datetime is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_END_DATETIME of the CONDITION_OCCURRENCE.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_end_datetime","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":847,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.47"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.412485 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.condition_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_TYPE_CONCEPT_ID of the CONDITION_OCCURRENCE.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_type_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":848,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.48"},{"NUM_VIOLATED_ROWS":16441,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.900734 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_status_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_status_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.condition_status_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_STATUS_CONCEPT_ID of the CONDITION_OCCURRENCE.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_status_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":849,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.49"},{"NUM_VIOLATED_ROWS":16441,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.627732 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = stop_reason\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.stop_reason' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.stop_reason is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the STOP_REASON of the CONDITION_OCCURRENCE.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"stop_reason","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":850,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.50"},{"NUM_VIOLATED_ROWS":16441,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.835345 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.provider_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROVIDER_ID of the CONDITION_OCCURRENCE.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":851,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.51"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.647057 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.visit_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.visit_occurrence_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_OCCURRENCE_ID of the CONDITION_OCCURRENCE.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":852,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.52"},{"NUM_VIOLATED_ROWS":16441,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.676377 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = visit_detail_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.visit_detail_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_ID of the CONDITION_OCCURRENCE.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":853,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.53"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.552145 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.condition_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_SOURCE_VALUE of the CONDITION_OCCURRENCE.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":854,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.54"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.998823 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.condition_source_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_SOURCE_CONCEPT_ID of the CONDITION_OCCURRENCE.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_source_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":855,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.55"},{"NUM_VIOLATED_ROWS":16441,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.752147 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_status_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_status_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.condition_status_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_STATUS_SOURCE_VALUE of the CONDITION_OCCURRENCE.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_status_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":856,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.56"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.789926 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.drug_exposure_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_EXPOSURE_ID of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":857,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.57"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.727762 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":858,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.58"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.809014 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.drug_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_CONCEPT_ID of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":859,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.59"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.608323 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_start_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.drug_exposure_start_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_EXPOSURE_START_DATE of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_start_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":860,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.60"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.811950 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_start_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_start_datetime' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.drug_exposure_start_datetime is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_EXPOSURE_START_DATETIME of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_start_datetime","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":861,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.61"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.822090 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_end_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.drug_exposure_end_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_EXPOSURE_END_DATE of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_end_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":862,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.62"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.460673 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_end_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_end_datetime' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.drug_exposure_end_datetime is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_EXPOSURE_END_DATETIME of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_end_datetime","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":863,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.63"},{"NUM_VIOLATED_ROWS":18229,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.220192 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = verbatim_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.verbatim_end_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.verbatim_end_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VERBATIM_END_DATE of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"verbatim_end_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":864,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.64"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.808048 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.drug_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_TYPE_CONCEPT_ID of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_type_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":865,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.65"},{"NUM_VIOLATED_ROWS":18229,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.714756 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = stop_reason\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.stop_reason' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.stop_reason is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the STOP_REASON of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"stop_reason","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":866,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.66"},{"NUM_VIOLATED_ROWS":18229,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.734996 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = refills\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.refills' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.refills is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the REFILLS of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"refills","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":867,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.67"},{"NUM_VIOLATED_ROWS":9,"PCT_VIOLATED_ROWS":0.0005,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.975884 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = quantity\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.quantity' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.quantity is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the QUANTITY of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"quantity","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":868,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.68"},{"NUM_VIOLATED_ROWS":18229,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.751443 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = days_supply\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.days_supply' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.days_supply is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DAYS_SUPPLY of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"days_supply","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":869,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.69"},{"NUM_VIOLATED_ROWS":18229,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.291499 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = sig\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.sig' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.sig is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the SIG of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"sig","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":870,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.70"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.680534 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = route_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.route_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.route_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the ROUTE_CONCEPT_ID of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"route_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":871,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.71"},{"NUM_VIOLATED_ROWS":18229,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.654883 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = lot_number\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.lot_number' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.lot_number is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the LOT_NUMBER of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"lot_number","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":872,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.72"},{"NUM_VIOLATED_ROWS":18229,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.895094 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.provider_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROVIDER_ID of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":873,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.73"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.278384 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.visit_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.visit_occurrence_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_OCCURRENCE_ID of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":874,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.74"},{"NUM_VIOLATED_ROWS":18229,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.958410 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = visit_detail_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.visit_detail_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_ID of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":875,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.75"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.781622 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.drug_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_SOURCE_VALUE of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":876,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.76"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.791436 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.drug_source_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_SOURCE_CONCEPT_ID of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_source_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":877,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.77"},{"NUM_VIOLATED_ROWS":6,"PCT_VIOLATED_ROWS":0.0003,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.804545 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = route_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.route_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.route_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the ROUTE_SOURCE_VALUE of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"route_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":878,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.78"},{"NUM_VIOLATED_ROWS":9,"PCT_VIOLATED_ROWS":0.0005,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.866638 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = dose_unit_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.dose_unit_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.dose_unit_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DOSE_UNIT_SOURCE_VALUE of the DRUG_EXPOSURE.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"dose_unit_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":879,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.79"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.857981 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.procedure_occurrence_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROCEDURE_OCCURRENCE_ID of the PROCEDURE_OCCURRENCE.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_occurrence_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":880,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.80"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.674209 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the PROCEDURE_OCCURRENCE.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":881,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.81"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.521905 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.procedure_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROCEDURE_CONCEPT_ID of the PROCEDURE_OCCURRENCE.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":882,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.82"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.688949 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.procedure_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROCEDURE_DATE of the PROCEDURE_OCCURRENCE.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":883,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.83"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.773856 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_datetime' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.procedure_datetime is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROCEDURE_DATETIME of the PROCEDURE_OCCURRENCE.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_datetime","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":884,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.84"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.555730 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.procedure_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROCEDURE_TYPE_CONCEPT_ID of the PROCEDURE_OCCURRENCE.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_type_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":885,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.85"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"2.037996 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = modifier_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.modifier_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.modifier_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the MODIFIER_CONCEPT_ID of the PROCEDURE_OCCURRENCE.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"modifier_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":886,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.86"},{"NUM_VIOLATED_ROWS":3338,"PCT_VIOLATED_ROWS":0.1004,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.387633 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = quantity\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.quantity' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.quantity is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the QUANTITY of the PROCEDURE_OCCURRENCE.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"quantity","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":887,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.87"},{"NUM_VIOLATED_ROWS":33237,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.528198 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.provider_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROVIDER_ID of the PROCEDURE_OCCURRENCE.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":888,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.88"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.689691 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.visit_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.visit_occurrence_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_OCCURRENCE_ID of the PROCEDURE_OCCURRENCE.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":889,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.89"},{"NUM_VIOLATED_ROWS":33237,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.692149 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = visit_detail_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.visit_detail_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_ID of the PROCEDURE_OCCURRENCE.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":890,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.90"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.718229 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.procedure_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROCEDURE_SOURCE_VALUE of the PROCEDURE_OCCURRENCE.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":891,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.91"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.467665 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.procedure_source_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROCEDURE_SOURCE_CONCEPT_ID of the PROCEDURE_OCCURRENCE.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_source_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":892,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.92"},{"NUM_VIOLATED_ROWS":33237,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.454870 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = modifier_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.modifier_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.modifier_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the MODIFIER_SOURCE_VALUE of the PROCEDURE_OCCURRENCE.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"modifier_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":893,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.93"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.918099 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\twhere cdmtable.device_exposure_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DEVICE_EXPOSURE_ID of the DEVICE_EXPOSURE.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":894,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.94"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.900894 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\twhere cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the DEVICE_EXPOSURE.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":895,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.95"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.866833 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\twhere cdmtable.device_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DEVICE_CONCEPT_ID of the DEVICE_EXPOSURE.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":896,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.96"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.847571 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_start_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\twhere cdmtable.device_exposure_start_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DEVICE_EXPOSURE_START_DATE of the DEVICE_EXPOSURE.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_start_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":897,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.97"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.532796 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_start_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_start_datetime' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\twhere cdmtable.device_exposure_start_datetime is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DEVICE_EXPOSURE_START_DATETIME of the DEVICE_EXPOSURE.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_start_datetime","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":898,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.98"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.956514 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_end_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\twhere cdmtable.device_exposure_end_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DEVICE_EXPOSURE_END_DATE of the DEVICE_EXPOSURE.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_end_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":899,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.99"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.481798 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_end_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_end_datetime' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\twhere cdmtable.device_exposure_end_datetime is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DEVICE_EXPOSURE_END_DATETIME of the DEVICE_EXPOSURE.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_end_datetime","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":900,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.100"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.746813 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\twhere cdmtable.device_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DEVICE_TYPE_CONCEPT_ID of the DEVICE_EXPOSURE.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_type_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":901,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.101"},{"NUM_VIOLATED_ROWS":294,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.766454 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = unique_device_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.unique_device_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\twhere cdmtable.unique_device_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the UNIQUE_DEVICE_ID of the DEVICE_EXPOSURE.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"unique_device_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":902,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.102"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"2.513062 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = quantity\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.quantity' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\twhere cdmtable.quantity is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the QUANTITY of the DEVICE_EXPOSURE.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"quantity","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":903,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.103"},{"NUM_VIOLATED_ROWS":294,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.811839 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\twhere cdmtable.provider_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROVIDER_ID of the DEVICE_EXPOSURE.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":904,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.104"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.928066 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.visit_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\twhere cdmtable.visit_occurrence_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_OCCURRENCE_ID of the DEVICE_EXPOSURE.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":905,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.105"},{"NUM_VIOLATED_ROWS":294,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.691657 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = visit_detail_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.visit_detail_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_ID of the DEVICE_EXPOSURE.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":906,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.106"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.800678 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\twhere cdmtable.device_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DEVICE_SOURCE_VALUE of the DEVICE_EXPOSURE.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":907,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.107"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.551150 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\twhere cdmtable.device_source_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DEVICE_SOURCE_CONCEPT_ID of the DEVICE_EXPOSURE.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_source_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":908,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.108"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.843799 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.measurement_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the MEASUREMENT_ID of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":909,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.109"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.565394 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":910,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.110"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.849989 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.measurement_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the MEASUREMENT_CONCEPT_ID of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":911,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.111"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.770845 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.measurement_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the MEASUREMENT_DATE of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":912,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.112"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.714994 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_datetime' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.measurement_datetime is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the MEASUREMENT_DATETIME of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_datetime","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":913,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.113"},{"NUM_VIOLATED_ROWS":419764,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.805659 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_time\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_time' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.measurement_time is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the MEASUREMENT_TIME of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_time","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":914,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.114"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.834377 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.measurement_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the MEASUREMENT_TYPE_CONCEPT_ID of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_type_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":915,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.115"},{"NUM_VIOLATED_ROWS":419752,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.721106 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = operator_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.operator_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.operator_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the OPERATOR_CONCEPT_ID of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"operator_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":916,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.116"},{"NUM_VIOLATED_ROWS":40425,"PCT_VIOLATED_ROWS":0.0963,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"2.796697 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = value_as_number\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.value_as_number' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.value_as_number is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VALUE_AS_NUMBER of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"value_as_number","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":917,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.117"},{"NUM_VIOLATED_ROWS":391862,"PCT_VIOLATED_ROWS":0.9335,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.550177 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = value_as_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.value_as_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.value_as_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VALUE_AS_CONCEPT_ID of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"value_as_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":918,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.118"},{"NUM_VIOLATED_ROWS":65519,"PCT_VIOLATED_ROWS":0.1561,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.528098 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = unit_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.unit_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.unit_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the UNIT_CONCEPT_ID of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":919,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.119"},{"NUM_VIOLATED_ROWS":323151,"PCT_VIOLATED_ROWS":0.7698,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.515912 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = range_low\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.range_low' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.range_low is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the RANGE_LOW of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"range_low","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":920,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.120"},{"NUM_VIOLATED_ROWS":323151,"PCT_VIOLATED_ROWS":0.7698,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.749190 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = range_high\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.range_high' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.range_high is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the RANGE_HIGH of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"range_high","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":921,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.121"},{"NUM_VIOLATED_ROWS":419764,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"2.232489 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.provider_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROVIDER_ID of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":922,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.122"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.870515 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.visit_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.visit_occurrence_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_OCCURRENCE_ID of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":923,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.123"},{"NUM_VIOLATED_ROWS":406202,"PCT_VIOLATED_ROWS":0.9677,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"2.751671 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = visit_detail_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.visit_detail_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_ID of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":924,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.124"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.994336 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.measurement_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the MEASUREMENT_SOURCE_VALUE of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":925,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.125"},{"NUM_VIOLATED_ROWS":91768,"PCT_VIOLATED_ROWS":0.2186,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"2.040764 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.measurement_source_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the MEASUREMENT_SOURCE_CONCEPT_ID of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_source_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":926,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.126"},{"NUM_VIOLATED_ROWS":65519,"PCT_VIOLATED_ROWS":0.1561,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.764874 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = unit_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.unit_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.unit_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the UNIT_SOURCE_VALUE of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"unit_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":927,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.127"},{"NUM_VIOLATED_ROWS":271199,"PCT_VIOLATED_ROWS":0.6461,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.678375 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = value_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.value_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.value_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VALUE_SOURCE_VALUE of the MEASUREMENT.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"value_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":928,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.128"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.765118 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_ID of the VISIT_DETAIL.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":929,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.129"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"2.037388 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the VISIT_DETAIL.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":930,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.130"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.736432 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_CONCEPT_ID of the VISIT_DETAIL.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":931,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.131"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.641678 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_start_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_start_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_START_DATE of the VISIT_DETAIL.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_start_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":932,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.132"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.780677 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_start_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_start_datetime' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_start_datetime is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_START_DATETIME of the VISIT_DETAIL.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_start_datetime","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":933,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.133"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.953069 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_end_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_end_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_END_DATE of the VISIT_DETAIL.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_end_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":934,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.134"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.929604 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_end_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_end_datetime' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_end_datetime is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_END_DATETIME of the VISIT_DETAIL.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_end_datetime","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":935,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.135"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.737140 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_TYPE_CONCEPT_ID of the VISIT_DETAIL.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_type_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":936,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.136"},{"NUM_VIOLATED_ROWS":14479,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.720297 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.provider_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROVIDER_ID of the VISIT_DETAIL.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":937,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.137"},{"NUM_VIOLATED_ROWS":13654,"PCT_VIOLATED_ROWS":0.943,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.840056 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = care_site_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.care_site_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.care_site_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CARE_SITE_ID of the VISIT_DETAIL.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":938,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.138"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"2.041631 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_SOURCE_VALUE of the VISIT_DETAIL.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":939,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.139"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.772599 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_source_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_SOURCE_CONCEPT_ID of the VISIT_DETAIL.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_source_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":940,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.140"},{"NUM_VIOLATED_ROWS":13,"PCT_VIOLATED_ROWS":0.0009,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.593415 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = admitting_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.admitting_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.admitting_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the ADMITTING_SOURCE_VALUE of the VISIT_DETAIL.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"admitting_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":941,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.141"},{"NUM_VIOLATED_ROWS":13,"PCT_VIOLATED_ROWS":0.0009,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.841992 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = admitting_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.admitting_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.admitting_source_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the ADMITTING_SOURCE_CONCEPT_ID of the VISIT_DETAIL.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"admitting_source_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":942,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.142"},{"NUM_VIOLATED_ROWS":109,"PCT_VIOLATED_ROWS":0.0075,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.749792 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = discharge_to_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.discharge_to_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.discharge_to_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DISCHARGE_TO_SOURCE_VALUE of the VISIT_DETAIL.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"discharge_to_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":943,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.143"},{"NUM_VIOLATED_ROWS":109,"PCT_VIOLATED_ROWS":0.0075,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.954806 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = discharge_to_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.discharge_to_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.discharge_to_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DISCHARGE_TO_CONCEPT_ID of the VISIT_DETAIL.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"discharge_to_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":944,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.144"},{"NUM_VIOLATED_ROWS":851,"PCT_VIOLATED_ROWS":0.0588,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.844647 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = preceding_visit_detail_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.preceding_visit_detail_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.preceding_visit_detail_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PRECEDING_VISIT_DETAIL_ID of the VISIT_DETAIL.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"preceding_visit_detail_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":945,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.145"},{"NUM_VIOLATED_ROWS":14479,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.781341 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_parent_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_parent_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_parent_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_PARENT_ID of the VISIT_DETAIL.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_parent_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":946,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.146"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"2.112608 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.visit_occurrence_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_OCCURRENCE_ID of the VISIT_DETAIL.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":947,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.147"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.531591 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\twhere cdmtable.note_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NOTE_ID of the NOTE.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":948,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.148"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.444312 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\twhere cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the NOTE.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":949,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.149"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.847865 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\twhere cdmtable.note_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NOTE_DATE of the NOTE.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":950,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.150"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.064627 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_datetime' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\twhere cdmtable.note_datetime is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NOTE_DATETIME of the NOTE.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_datetime","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":951,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.151"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.935873 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\twhere cdmtable.note_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NOTE_TYPE_CONCEPT_ID of the NOTE.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_type_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":952,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.152"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.583703 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_class_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_class_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\twhere cdmtable.note_class_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NOTE_CLASS_CONCEPT_ID of the NOTE.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_class_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":953,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.153"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.843355 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_title\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_title' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\twhere cdmtable.note_title is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NOTE_TITLE of the NOTE.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_title","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":954,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.154"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.753668 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_text\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_text' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\twhere cdmtable.note_text is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NOTE_TEXT of the NOTE.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_text","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":955,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.155"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.684346 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = encoding_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.encoding_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\twhere cdmtable.encoding_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the ENCODING_CONCEPT_ID of the NOTE.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"encoding_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":956,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.156"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.881195 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = language_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.language_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\twhere cdmtable.language_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the LANGUAGE_CONCEPT_ID of the NOTE.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"language_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":957,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.157"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.475508 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\twhere cdmtable.provider_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROVIDER_ID of the NOTE.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":958,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.158"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.864537 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.visit_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\twhere cdmtable.visit_occurrence_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_OCCURRENCE_ID of the NOTE.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":959,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.159"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.360275 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = visit_detail_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.visit_detail_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_ID of the NOTE.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":960,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.160"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.506215 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n\t\twhere cdmtable.note_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NOTE_SOURCE_VALUE of the NOTE.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":961,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.161"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.001342 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = note_nlp_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.note_nlp_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t\n\t\twhere cdmtable.note_nlp_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NOTE_NLP_ID of the NOTE_NLP.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"note_nlp_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":962,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.162"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.823373 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = note_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.note_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t\n\t\twhere cdmtable.note_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NOTE_ID of the NOTE_NLP.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"note_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":963,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.163"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.434867 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = section_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.section_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t\n\t\twhere cdmtable.section_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the SECTION_CONCEPT_ID of the NOTE_NLP.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"section_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":964,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.164"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.460603 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = snippet\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.snippet' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t\n\t\twhere cdmtable.snippet is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the SNIPPET of the NOTE_NLP.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"snippet","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":965,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.165"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.820138 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = offset\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.offset' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t\n\t\twhere cdmtable.offset is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the OFFSET of the NOTE_NLP.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"offset","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":966,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.166"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.807095 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = lexical_variant\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.lexical_variant' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t\n\t\twhere cdmtable.lexical_variant is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the LEXICAL_VARIANT of the NOTE_NLP.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"lexical_variant","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":967,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.167"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.638563 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = note_nlp_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.note_nlp_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t\n\t\twhere cdmtable.note_nlp_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NOTE_NLP_CONCEPT_ID of the NOTE_NLP.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"note_nlp_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":968,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.168"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.948590 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = note_nlp_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.note_nlp_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t\n\t\twhere cdmtable.note_nlp_source_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NOTE_NLP_SOURCE_CONCEPT_ID of the NOTE_NLP.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"note_nlp_source_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":969,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.169"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.766217 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = nlp_system\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.nlp_system' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t\n\t\twhere cdmtable.nlp_system is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NLP_SYSTEM of the NOTE_NLP.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"nlp_system","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":970,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.170"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.533477 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = nlp_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.nlp_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t\n\t\twhere cdmtable.nlp_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NLP_DATE of the NOTE_NLP.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"nlp_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":971,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.171"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.842150 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = nlp_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.nlp_datetime' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t\n\t\twhere cdmtable.nlp_datetime is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NLP_DATETIME of the NOTE_NLP.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"nlp_datetime","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":972,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.172"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.973884 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = term_exists\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.term_exists' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t\n\t\twhere cdmtable.term_exists is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the TERM_EXISTS of the NOTE_NLP.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"term_exists","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":973,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.173"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.865053 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = term_temporal\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.term_temporal' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t\n\t\twhere cdmtable.term_temporal is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the TERM_TEMPORAL of the NOTE_NLP.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"term_temporal","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":974,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.174"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.833272 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = term_modifiers\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.term_modifiers' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t\n\t\twhere cdmtable.term_modifiers is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the TERM_MODIFIERS of the NOTE_NLP.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"term_modifiers","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":975,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.175"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.777358 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.observation_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the OBSERVATION_ID of the OBSERVATION.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":976,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.176"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.776416 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the OBSERVATION.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":977,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.177"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.977615 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.observation_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the OBSERVATION_CONCEPT_ID of the OBSERVATION.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":978,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.178"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.723504 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.observation_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the OBSERVATION_DATE of the OBSERVATION.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":979,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.179"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.760011 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_datetime' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.observation_datetime is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the OBSERVATION_DATETIME of the OBSERVATION.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_datetime","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":980,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.180"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.066811 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.observation_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the OBSERVATION_TYPE_CONCEPT_ID of the OBSERVATION.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_type_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":981,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.181"},{"NUM_VIOLATED_ROWS":18168,"PCT_VIOLATED_ROWS":0.7795,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.859423 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = value_as_number\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.value_as_number' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.value_as_number is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VALUE_AS_NUMBER of the OBSERVATION.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"value_as_number","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":982,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.182"},{"NUM_VIOLATED_ROWS":6382,"PCT_VIOLATED_ROWS":0.2738,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.948107 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = value_as_string\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.value_as_string' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.value_as_string is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VALUE_AS_STRING of the OBSERVATION.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"value_as_string","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":983,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.183"},{"NUM_VIOLATED_ROWS":6382,"PCT_VIOLATED_ROWS":0.2738,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.700728 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = value_as_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.value_as_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.value_as_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VALUE_AS_CONCEPT_ID of the OBSERVATION.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"value_as_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":984,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.184"},{"NUM_VIOLATED_ROWS":23306,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.017577 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = qualifier_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.qualifier_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.qualifier_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the QUALIFIER_CONCEPT_ID of the OBSERVATION.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"qualifier_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":985,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.185"},{"NUM_VIOLATED_ROWS":23289,"PCT_VIOLATED_ROWS":0.9993,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.663600 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = unit_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.unit_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.unit_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the UNIT_CONCEPT_ID of the OBSERVATION.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":986,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.186"},{"NUM_VIOLATED_ROWS":23306,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.879834 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.provider_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROVIDER_ID of the OBSERVATION.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":987,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.187"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.742564 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = visit_occurrence_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.visit_occurrence_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.visit_occurrence_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_OCCURRENCE_ID of the OBSERVATION.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"visit_occurrence_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":988,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.188"},{"NUM_VIOLATED_ROWS":23306,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.738536 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = visit_detail_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.visit_detail_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the VISIT_DETAIL_ID of the OBSERVATION.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"visit_detail_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":989,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.189"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.684827 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.observation_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the OBSERVATION_SOURCE_VALUE of the OBSERVATION.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":990,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.190"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.553879 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.observation_source_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the OBSERVATION_SOURCE_CONCEPT_ID of the OBSERVATION.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_source_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":991,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.191"},{"NUM_VIOLATED_ROWS":23289,"PCT_VIOLATED_ROWS":0.9993,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.676525 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = unit_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.unit_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.unit_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the UNIT_SOURCE_VALUE of the OBSERVATION.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"unit_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":992,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.192"},{"NUM_VIOLATED_ROWS":23306,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.462596 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = qualifier_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.qualifier_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.qualifier_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the QUALIFIER_SOURCE_VALUE of the OBSERVATION.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"qualifier_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":993,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.193"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.461490 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.specimen_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the SPECIMEN_ID of the SPECIMEN.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":994,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.194"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.515566 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the SPECIMEN.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":995,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.195"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.723268 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.specimen_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the SPECIMEN_CONCEPT_ID of the SPECIMEN.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":996,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.196"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.455434 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.specimen_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the SPECIMEN_TYPE_CONCEPT_ID of the SPECIMEN.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_type_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":997,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.197"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.837277 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.specimen_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the SPECIMEN_DATE of the SPECIMEN.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":998,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.198"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.669273 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_datetime' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.specimen_datetime is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the SPECIMEN_DATETIME of the SPECIMEN.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_datetime","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":999,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.199"},{"NUM_VIOLATED_ROWS":300,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.740374 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = quantity\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.quantity' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.quantity is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the QUANTITY of the SPECIMEN.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"quantity","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1000,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.200"},{"NUM_VIOLATED_ROWS":300,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.756316 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = unit_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.unit_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.unit_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the UNIT_CONCEPT_ID of the SPECIMEN.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1001,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.201"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.557350 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = anatomic_site_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.anatomic_site_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.anatomic_site_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the ANATOMIC_SITE_CONCEPT_ID of the SPECIMEN.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"anatomic_site_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1002,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.202"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.384297 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = disease_status_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.disease_status_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.disease_status_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DISEASE_STATUS_CONCEPT_ID of the SPECIMEN.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"disease_status_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1003,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.203"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.487248 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_source_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_source_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.specimen_source_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the SPECIMEN_SOURCE_ID of the SPECIMEN.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_source_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1004,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.204"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.751676 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.specimen_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the SPECIMEN_SOURCE_VALUE of the SPECIMEN.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1005,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.205"},{"NUM_VIOLATED_ROWS":300,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"2.479709 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = unit_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.unit_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.unit_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the UNIT_SOURCE_VALUE of the SPECIMEN.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"unit_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1006,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.206"},{"NUM_VIOLATED_ROWS":300,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.586087 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = anatomic_site_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.anatomic_site_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.anatomic_site_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the ANATOMIC_SITE_SOURCE_VALUE of the SPECIMEN.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"anatomic_site_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1007,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.207"},{"NUM_VIOLATED_ROWS":300,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"2.508555 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = disease_status_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.disease_status_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.disease_status_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DISEASE_STATUS_SOURCE_VALUE of the SPECIMEN.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"disease_status_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1008,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.208"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"1.472912 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = domain_concept_id_1\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.domain_concept_id_1' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t\n\t\twhere cdmtable.domain_concept_id_1 is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DOMAIN_CONCEPT_ID_1 of the FACT_RELATIONSHIP.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"domain_concept_id_1","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1009,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.209"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"1.876749 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = fact_id_1\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.fact_id_1' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t\n\t\twhere cdmtable.fact_id_1 is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the FACT_ID_1 of the FACT_RELATIONSHIP.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"fact_id_1","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1010,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.210"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"1.501731 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = domain_concept_id_2\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.domain_concept_id_2' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t\n\t\twhere cdmtable.domain_concept_id_2 is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DOMAIN_CONCEPT_ID_2 of the FACT_RELATIONSHIP.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"domain_concept_id_2","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1011,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.211"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"1.802114 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = fact_id_2\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.fact_id_2' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t\n\t\twhere cdmtable.fact_id_2 is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the FACT_ID_2 of the FACT_RELATIONSHIP.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"fact_id_2","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1012,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.212"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"2.423080 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = relationship_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.relationship_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t\n\t\twhere cdmtable.relationship_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the RELATIONSHIP_CONCEPT_ID of the FACT_RELATIONSHIP.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"relationship_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1013,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.213"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.665860 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = LOCATION\ncdmFieldName = location_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'LOCATION.location_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.location cdmtable\n\t\t\n\t\twhere cdmtable.location_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.location cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the LOCATION_ID of the LOCATION.","CDM_TABLE_NAME":"LOCATION","CDM_FIELD_NAME":"location_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1014,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.214"},{"NUM_VIOLATED_ROWS":1,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.857842 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = LOCATION\ncdmFieldName = address_1\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'LOCATION.address_1' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.location cdmtable\n\t\t\n\t\twhere cdmtable.address_1 is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.location cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the ADDRESS_1 of the LOCATION.","CDM_TABLE_NAME":"LOCATION","CDM_FIELD_NAME":"address_1","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1015,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.215"},{"NUM_VIOLATED_ROWS":1,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.885809 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = LOCATION\ncdmFieldName = address_2\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'LOCATION.address_2' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.location cdmtable\n\t\t\n\t\twhere cdmtable.address_2 is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.location cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the ADDRESS_2 of the LOCATION.","CDM_TABLE_NAME":"LOCATION","CDM_FIELD_NAME":"address_2","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1016,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.216"},{"NUM_VIOLATED_ROWS":1,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.885433 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = LOCATION\ncdmFieldName = city\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'LOCATION.city' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.location cdmtable\n\t\t\n\t\twhere cdmtable.city is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.location cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CITY of the LOCATION.","CDM_TABLE_NAME":"LOCATION","CDM_FIELD_NAME":"city","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1017,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.217"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.784749 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = LOCATION\ncdmFieldName = state\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'LOCATION.state' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.location cdmtable\n\t\t\n\t\twhere cdmtable.state is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.location cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the STATE of the LOCATION.","CDM_TABLE_NAME":"LOCATION","CDM_FIELD_NAME":"state","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1018,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.218"},{"NUM_VIOLATED_ROWS":1,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.730849 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = LOCATION\ncdmFieldName = zip\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'LOCATION.zip' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.location cdmtable\n\t\t\n\t\twhere cdmtable.zip is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.location cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the ZIP of the LOCATION.","CDM_TABLE_NAME":"LOCATION","CDM_FIELD_NAME":"zip","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1019,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.219"},{"NUM_VIOLATED_ROWS":1,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.567759 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = LOCATION\ncdmFieldName = county\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'LOCATION.county' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.location cdmtable\n\t\t\n\t\twhere cdmtable.county is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.location cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the COUNTY of the LOCATION.","CDM_TABLE_NAME":"LOCATION","CDM_FIELD_NAME":"county","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1020,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.220"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.702162 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = LOCATION\ncdmFieldName = location_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'LOCATION.location_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.location cdmtable\n\t\t\n\t\twhere cdmtable.location_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.location cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the LOCATION_SOURCE_VALUE of the LOCATION.","CDM_TABLE_NAME":"LOCATION","CDM_FIELD_NAME":"location_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1021,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.221"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":31,"EXECUTION_TIME":"1.597074 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CARE_SITE\ncdmFieldName = care_site_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CARE_SITE.care_site_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\t\n\t\twhere cdmtable.care_site_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CARE_SITE_ID of the CARE_SITE.","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1022,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.222"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":31,"EXECUTION_TIME":"2.349581 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CARE_SITE\ncdmFieldName = care_site_name\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CARE_SITE.care_site_name' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\t\n\t\twhere cdmtable.care_site_name is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CARE_SITE_NAME of the CARE_SITE.","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"care_site_name","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1023,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.223"},{"NUM_VIOLATED_ROWS":27,"PCT_VIOLATED_ROWS":0.871,"NUM_DENOMINATOR_ROWS":31,"EXECUTION_TIME":"2.749976 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CARE_SITE\ncdmFieldName = place_of_service_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CARE_SITE.place_of_service_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\t\n\t\twhere cdmtable.place_of_service_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PLACE_OF_SERVICE_CONCEPT_ID of the CARE_SITE.","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"place_of_service_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1024,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.224"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":31,"EXECUTION_TIME":"1.874565 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CARE_SITE\ncdmFieldName = location_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CARE_SITE.location_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\t\n\t\twhere cdmtable.location_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the LOCATION_ID of the CARE_SITE.","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"location_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1025,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.225"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":31,"EXECUTION_TIME":"2.353115 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CARE_SITE\ncdmFieldName = care_site_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CARE_SITE.care_site_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\t\n\t\twhere cdmtable.care_site_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CARE_SITE_SOURCE_VALUE of the CARE_SITE.","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"care_site_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1026,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.226"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":31,"EXECUTION_TIME":"1.693972 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CARE_SITE\ncdmFieldName = place_of_service_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CARE_SITE.place_of_service_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\t\n\t\twhere cdmtable.place_of_service_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PLACE_OF_SERVICE_SOURCE_VALUE of the CARE_SITE.","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"place_of_service_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1027,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.227"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.526508 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = provider_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.provider_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\twhere cdmtable.provider_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROVIDER_ID of the PROVIDER.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"provider_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1028,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.228"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.720252 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = provider_name\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.provider_name' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\twhere cdmtable.provider_name is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROVIDER_NAME of the PROVIDER.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"provider_name","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1029,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.229"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.047466 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = npi\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.npi' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\twhere cdmtable.npi is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the NPI of the PROVIDER.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"npi","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1030,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.230"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.799692 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = dea\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.dea' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\twhere cdmtable.dea is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DEA of the PROVIDER.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"dea","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1031,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.231"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.053986 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = specialty_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.specialty_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\twhere cdmtable.specialty_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the SPECIALTY_CONCEPT_ID of the PROVIDER.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"specialty_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1032,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.232"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.793879 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = care_site_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.care_site_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\twhere cdmtable.care_site_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CARE_SITE_ID of the PROVIDER.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"care_site_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1033,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.233"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.050782 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = year_of_birth\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.year_of_birth' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\twhere cdmtable.year_of_birth is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the YEAR_OF_BIRTH of the PROVIDER.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"year_of_birth","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1034,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.234"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.728750 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = gender_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.gender_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\twhere cdmtable.gender_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the GENDER_CONCEPT_ID of the PROVIDER.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"gender_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1035,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.235"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.827489 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = provider_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.provider_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\twhere cdmtable.provider_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PROVIDER_SOURCE_VALUE of the PROVIDER.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"provider_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1036,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.236"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.891167 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = specialty_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.specialty_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\twhere cdmtable.specialty_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the SPECIALTY_SOURCE_VALUE of the PROVIDER.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"specialty_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1037,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.237"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.718026 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = specialty_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.specialty_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\twhere cdmtable.specialty_source_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the SPECIALTY_SOURCE_CONCEPT_ID of the PROVIDER.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"specialty_source_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1038,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.238"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.545207 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = gender_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.gender_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\twhere cdmtable.gender_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the GENDER_SOURCE_VALUE of the PROVIDER.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"gender_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1039,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.239"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.497518 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = gender_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.gender_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\twhere cdmtable.gender_source_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the GENDER_SOURCE_CONCEPT_ID of the PROVIDER.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"gender_source_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1040,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.240"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.970293 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_plan_period_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.payer_plan_period_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.payer_plan_period_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PAYER_PLAN_PERIOD_ID of the PAYER_PLAN_PERIOD.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_plan_period_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1041,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.241"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.379535 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the PAYER_PLAN_PERIOD.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1042,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.242"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.663654 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_plan_period_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.payer_plan_period_start_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.payer_plan_period_start_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PAYER_PLAN_PERIOD_START_DATE of the PAYER_PLAN_PERIOD.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_plan_period_start_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1043,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.243"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.529538 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_plan_period_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.payer_plan_period_end_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.payer_plan_period_end_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PAYER_PLAN_PERIOD_END_DATE of the PAYER_PLAN_PERIOD.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_plan_period_end_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1044,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.244"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.597517 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.payer_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.payer_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PAYER_CONCEPT_ID of the PAYER_PLAN_PERIOD.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1045,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.245"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.513113 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.payer_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.payer_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PAYER_SOURCE_VALUE of the PAYER_PLAN_PERIOD.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1046,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.246"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.760541 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.payer_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.payer_source_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PAYER_SOURCE_CONCEPT_ID of the PAYER_PLAN_PERIOD.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_source_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1047,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.247"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.769673 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = plan_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.plan_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.plan_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PLAN_CONCEPT_ID of the PAYER_PLAN_PERIOD.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"plan_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1048,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.248"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.598778 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = plan_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.plan_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.plan_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PLAN_SOURCE_VALUE of the PAYER_PLAN_PERIOD.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"plan_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1049,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.249"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.368749 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = plan_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.plan_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.plan_source_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PLAN_SOURCE_CONCEPT_ID of the PAYER_PLAN_PERIOD.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"plan_source_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1050,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.250"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.773663 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = sponsor_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.sponsor_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.sponsor_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the SPONSOR_CONCEPT_ID of the PAYER_PLAN_PERIOD.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"sponsor_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1051,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.251"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.843933 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = sponsor_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.sponsor_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.sponsor_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the SPONSOR_SOURCE_VALUE of the PAYER_PLAN_PERIOD.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"sponsor_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1052,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.252"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.830480 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = sponsor_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.sponsor_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.sponsor_source_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the SPONSOR_SOURCE_CONCEPT_ID of the PAYER_PLAN_PERIOD.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"sponsor_source_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1053,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.253"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.730332 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = family_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.family_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.family_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the FAMILY_SOURCE_VALUE of the PAYER_PLAN_PERIOD.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"family_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1054,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.254"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.864588 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = stop_reason_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.stop_reason_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.stop_reason_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the STOP_REASON_CONCEPT_ID of the PAYER_PLAN_PERIOD.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"stop_reason_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1055,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.255"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.649430 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = stop_reason_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.stop_reason_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.stop_reason_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the STOP_REASON_SOURCE_VALUE of the PAYER_PLAN_PERIOD.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"stop_reason_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1056,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.256"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.734068 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = stop_reason_source_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.stop_reason_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.stop_reason_source_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the STOP_REASON_SOURCE_CONCEPT_ID of the PAYER_PLAN_PERIOD.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"stop_reason_source_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1057,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.257"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.374159 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = cost_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.cost_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.cost_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the COST_ID of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"cost_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1058,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.258"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.815652 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = cost_event_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.cost_event_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.cost_event_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the COST_EVENT_ID of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"cost_event_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1059,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.259"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.001439 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = cost_domain_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.cost_domain_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.cost_domain_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the COST_DOMAIN_ID of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"cost_domain_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1060,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.260"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.779740 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = cost_type_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.cost_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.cost_type_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the COST_TYPE_CONCEPT_ID of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"cost_type_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1061,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.261"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.565383 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = currency_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.currency_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.currency_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CURRENCY_CONCEPT_ID of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"currency_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1062,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.262"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.753868 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = total_charge\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.total_charge' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.total_charge is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the TOTAL_CHARGE of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"total_charge","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1063,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.263"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.910561 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = total_cost\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.total_cost' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.total_cost is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the TOTAL_COST of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"total_cost","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1064,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.264"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.629961 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = total_paid\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.total_paid' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.total_paid is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the TOTAL_PAID of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"total_paid","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1065,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.265"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.821164 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = paid_by_payer\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.paid_by_payer' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.paid_by_payer is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PAID_BY_PAYER of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"paid_by_payer","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1066,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.266"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.798760 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = paid_by_patient\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.paid_by_patient' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.paid_by_patient is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PAID_BY_PATIENT of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"paid_by_patient","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1067,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.267"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.862463 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = paid_patient_copay\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.paid_patient_copay' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.paid_patient_copay is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PAID_PATIENT_COPAY of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"paid_patient_copay","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1068,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.268"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.805256 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = paid_patient_coinsurance\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.paid_patient_coinsurance' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.paid_patient_coinsurance is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PAID_PATIENT_COINSURANCE of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"paid_patient_coinsurance","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1069,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.269"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.622343 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = paid_patient_deductible\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.paid_patient_deductible' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.paid_patient_deductible is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PAID_PATIENT_DEDUCTIBLE of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"paid_patient_deductible","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1070,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.270"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.695321 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = paid_by_primary\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.paid_by_primary' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.paid_by_primary is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PAID_BY_PRIMARY of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"paid_by_primary","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1071,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.271"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.542790 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = paid_ingredient_cost\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.paid_ingredient_cost' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.paid_ingredient_cost is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PAID_INGREDIENT_COST of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"paid_ingredient_cost","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1072,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.272"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.653821 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = paid_dispensing_fee\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.paid_dispensing_fee' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.paid_dispensing_fee is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PAID_DISPENSING_FEE of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"paid_dispensing_fee","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1073,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.273"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.438158 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = payer_plan_period_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.payer_plan_period_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.payer_plan_period_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PAYER_PLAN_PERIOD_ID of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"payer_plan_period_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1074,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.274"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.461497 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = amount_allowed\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.amount_allowed' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.amount_allowed is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the AMOUNT_ALLOWED of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"amount_allowed","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1075,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.275"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.498746 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = revenue_code_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.revenue_code_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.revenue_code_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the REVENUE_CODE_CONCEPT_ID of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"revenue_code_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1076,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.276"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.972156 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = revenue_code_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.revenue_code_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.revenue_code_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the REVENUE_CODE_SOURCE_VALUE of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"revenue_code_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1077,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.277"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.878750 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = drg_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.drg_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.drg_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRG_CONCEPT_ID of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"drg_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1078,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.278"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.561223 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = drg_source_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.drg_source_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.drg_source_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRG_SOURCE_VALUE of the COST.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"drg_source_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1079,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.279"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.858228 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_era_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_era_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t\n\t\twhere cdmtable.drug_era_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_ERA_ID of the DRUG_ERA.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_era_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1080,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.280"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.898469 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t\n\t\twhere cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the DRUG_ERA.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1081,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.281"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.721141 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t\n\t\twhere cdmtable.drug_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_CONCEPT_ID of the DRUG_ERA.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1082,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.282"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"2.176779 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_era_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_era_start_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t\n\t\twhere cdmtable.drug_era_start_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_ERA_START_DATE of the DRUG_ERA.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_era_start_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1083,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.283"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.901158 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_era_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_era_end_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t\n\t\twhere cdmtable.drug_era_end_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_ERA_END_DATE of the DRUG_ERA.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_era_end_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1084,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.284"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.837888 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_exposure_count\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_exposure_count' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t\n\t\twhere cdmtable.drug_exposure_count is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_EXPOSURE_COUNT of the DRUG_ERA.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_exposure_count","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1085,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.285"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.656817 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = gap_days\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.gap_days' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t\n\t\twhere cdmtable.gap_days is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the GAP_DAYS of the DRUG_ERA.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"gap_days","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1086,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.286"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"1.886851 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_era_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.dose_era_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t\n\t\twhere cdmtable.dose_era_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DOSE_ERA_ID of the DOSE_ERA.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_era_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1087,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.287"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"1.896334 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t\n\t\twhere cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the DOSE_ERA.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1088,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.288"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"1.487115 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = drug_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.drug_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t\n\t\twhere cdmtable.drug_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DRUG_CONCEPT_ID of the DOSE_ERA.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1089,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.289"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"1.609633 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = unit_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.unit_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t\n\t\twhere cdmtable.unit_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the UNIT_CONCEPT_ID of the DOSE_ERA.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1090,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.290"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"2.511483 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_value\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.dose_value' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t\n\t\twhere cdmtable.dose_value is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DOSE_VALUE of the DOSE_ERA.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_value","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1091,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.291"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"1.847880 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_era_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.dose_era_start_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t\n\t\twhere cdmtable.dose_era_start_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DOSE_ERA_START_DATE of the DOSE_ERA.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_era_start_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1092,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.292"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"2.130771 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_era_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.dose_era_end_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t\n\t\twhere cdmtable.dose_era_end_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the DOSE_ERA_END_DATE of the DOSE_ERA.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_era_end_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1093,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.293"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"1.833430 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_era_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_era_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t\n\t\twhere cdmtable.condition_era_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_ERA_ID of the CONDITION_ERA.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_era_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1094,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.294"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"1.735854 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = person_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.person_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t\n\t\twhere cdmtable.person_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the PERSON_ID of the CONDITION_ERA.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"person_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1095,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.295"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"1.646622 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_concept_id\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t\n\t\twhere cdmtable.condition_concept_id is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_CONCEPT_ID of the CONDITION_ERA.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_concept_id","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1096,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.296"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"1.837612 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_era_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_era_start_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t\n\t\twhere cdmtable.condition_era_start_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_ERA_START_DATE of the CONDITION_ERA.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_era_start_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1097,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.297"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"2.091208 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_era_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_era_end_date' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t\n\t\twhere cdmtable.condition_era_end_date is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_ERA_END_DATE of the CONDITION_ERA.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_era_end_date","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1098,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"10.298"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"1.549575 secs","QUERY_TEXT":"\n/*********\nMEASURE_VALUE_COMPLETENESS\nComputing number of null values and the proportion to total records per field\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_occurrence_count\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_occurrence_count' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t\n\t\twhere cdmtable.condition_occurrence_count is null\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"measureValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a NULL value in the CONDITION_OCCURRENCE_COUNT of the CONDITION_ERA.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_occurrence_count","SQL_FILE":"field_measure_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1099,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"10.299"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.001138 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = gender_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.gender_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.gender_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field GENDER_CONCEPT_ID in the PERSON table.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"gender_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1100,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"11.1"},{"NUM_VIOLATED_ROWS":5,"PCT_VIOLATED_ROWS":0.05,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.838515 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = race_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.race_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.race_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field RACE_CONCEPT_ID in the PERSON table.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"race_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1101,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"11.2"},{"NUM_VIOLATED_ROWS":95,"PCT_VIOLATED_ROWS":0.95,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.018712 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = ethnicity_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.ethnicity_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.ethnicity_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field ETHNICITY_CONCEPT_ID in the PERSON table.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"ethnicity_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1102,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"11.3"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.793792 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = period_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.period_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\t\n\t\twhere cdmtable.period_type_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field PERIOD_TYPE_CONCEPT_ID in the OBSERVATION_PERIOD table.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"period_type_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1103,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"11.4"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.028082 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.visit_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field VISIT_CONCEPT_ID in the VISIT_OCCURRENCE table.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1104,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"11.5"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.884075 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.visit_type_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field VISIT_TYPE_CONCEPT_ID in the VISIT_OCCURRENCE table.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_type_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1105,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"11.6"},{"NUM_VIOLATED_ROWS":14,"PCT_VIOLATED_ROWS":0.0164,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.293239 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = admitting_source_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.admitting_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.admitting_source_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field ADMITTING_SOURCE_CONCEPT_ID in the VISIT_OCCURRENCE table.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"admitting_source_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1106,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"11.7"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.176656 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = discharge_to_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.discharge_to_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.discharge_to_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field DISCHARGE_TO_CONCEPT_ID in the VISIT_OCCURRENCE table.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"discharge_to_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1107,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"11.8"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.930539 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.condition_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field CONDITION_CONCEPT_ID in the CONDITION_OCCURRENCE table.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1108,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"11.9"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"2.021911 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.condition_type_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field CONDITION_TYPE_CONCEPT_ID in the CONDITION_OCCURRENCE table.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_type_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1109,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"11.10"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.525067 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_status_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_status_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.condition_status_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field CONDITION_STATUS_CONCEPT_ID in the CONDITION_OCCURRENCE table.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_status_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1110,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"11.11"},{"NUM_VIOLATED_ROWS":546,"PCT_VIOLATED_ROWS":0.03,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.465160 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.drug_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field DRUG_CONCEPT_ID in the DRUG_EXPOSURE table.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1111,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"11.12"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.777384 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.drug_type_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field DRUG_TYPE_CONCEPT_ID in the DRUG_EXPOSURE table.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_type_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1112,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"11.13"},{"NUM_VIOLATED_ROWS":7,"PCT_VIOLATED_ROWS":0.0004,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.786991 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = route_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.route_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.route_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field ROUTE_CONCEPT_ID in the DRUG_EXPOSURE table.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"route_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1113,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"11.14"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.607901 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.procedure_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field PROCEDURE_CONCEPT_ID in the PROCEDURE_OCCURRENCE table.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1114,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"11.15"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.932352 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.procedure_type_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field PROCEDURE_TYPE_CONCEPT_ID in the PROCEDURE_OCCURRENCE table.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_type_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1115,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"11.16"},{"NUM_VIOLATED_ROWS":33237,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.730099 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = modifier_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.modifier_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.modifier_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field MODIFIER_CONCEPT_ID in the PROCEDURE_OCCURRENCE table.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"modifier_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1116,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"11.17"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.734036 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\twhere cdmtable.device_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field DEVICE_CONCEPT_ID in the DEVICE_EXPOSURE table.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1117,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"11.18"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.753213 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\twhere cdmtable.device_type_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field DEVICE_TYPE_CONCEPT_ID in the DEVICE_EXPOSURE table.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_type_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1118,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"11.19"},{"NUM_VIOLATED_ROWS":92543,"PCT_VIOLATED_ROWS":0.2205,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"3.302931 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.measurement_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field MEASUREMENT_CONCEPT_ID in the MEASUREMENT table.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1119,"FAILED":1,"THRESHOLD_VALUE":5,"_row":"11.20"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.759917 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.measurement_type_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field MEASUREMENT_TYPE_CONCEPT_ID in the MEASUREMENT table.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_type_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1120,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"11.21"},{"NUM_VIOLATED_ROWS":2332,"PCT_VIOLATED_ROWS":0.0056,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.831894 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = unit_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.unit_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.unit_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field UNIT_CONCEPT_ID in the MEASUREMENT table.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1121,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"11.22"},{"NUM_VIOLATED_ROWS":41,"PCT_VIOLATED_ROWS":0.0028,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.635326 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field VISIT_DETAIL_CONCEPT_ID in the VISIT_DETAIL table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1122,"FAILED":1,"THRESHOLD_VALUE":0,"_row":"11.23"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"2.098830 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_type_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field VISIT_DETAIL_TYPE_CONCEPT_ID in the VISIT_DETAIL table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_type_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1123,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"11.24"},{"NUM_VIOLATED_ROWS":38,"PCT_VIOLATED_ROWS":0.0026,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"2.432129 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = admitting_source_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.admitting_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.admitting_source_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field ADMITTING_SOURCE_CONCEPT_ID in the VISIT_DETAIL table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"admitting_source_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1124,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"11.25"},{"NUM_VIOLATED_ROWS":1,"PCT_VIOLATED_ROWS":0.0001,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"2.026271 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = discharge_to_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.discharge_to_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.discharge_to_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field DISCHARGE_TO_CONCEPT_ID in the VISIT_DETAIL table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"discharge_to_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1125,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"11.26"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.236636 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records *for the OBSERVATION.unit_concept_id and MEASUREMENT.unit_concept_id \nthe numerator and denominator are limited to records where value_as_number IS NOT NULL\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.observation_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field OBSERVATION_CONCEPT_ID in the OBSERVATION table.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1126,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"11.27"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.912602 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records *for the OBSERVATION.unit_concept_id and MEASUREMENT.unit_concept_id \nthe numerator and denominator are limited to records where value_as_number IS NOT NULL\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.observation_type_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field OBSERVATION_TYPE_CONCEPT_ID in the OBSERVATION table.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_type_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1127,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"11.28"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.810086 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records *for the OBSERVATION.unit_concept_id and MEASUREMENT.unit_concept_id \nthe numerator and denominator are limited to records where value_as_number IS NOT NULL\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = unit_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.unit_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.unit_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field UNIT_CONCEPT_ID in the OBSERVATION table.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1128,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"11.29"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.936116 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.specimen_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field SPECIMEN_CONCEPT_ID in the SPECIMEN table.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1129,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"11.30"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"2.787058 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.specimen_type_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field SPECIMEN_TYPE_CONCEPT_ID in the SPECIMEN table.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_type_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1130,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"11.31"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"2.579261 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = unit_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.unit_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.unit_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field UNIT_CONCEPT_ID in the SPECIMEN table.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1131,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"11.32"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"1.794067 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = domain_concept_id_1\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.domain_concept_id_1' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t\n\t\twhere cdmtable.domain_concept_id_1 = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field DOMAIN_CONCEPT_ID_1 in the FACT_RELATIONSHIP table.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"domain_concept_id_1","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1132,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"11.33"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"2.013236 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = domain_concept_id_2\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.domain_concept_id_2' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t\n\t\twhere cdmtable.domain_concept_id_2 = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field DOMAIN_CONCEPT_ID_2 in the FACT_RELATIONSHIP table.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"domain_concept_id_2","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1133,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"11.34"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":28688,"EXECUTION_TIME":"2.017105 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = FACT_RELATIONSHIP\ncdmFieldName = relationship_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'FACT_RELATIONSHIP.relationship_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\t\n\t\twhere cdmtable.relationship_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.fact_relationship cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field RELATIONSHIP_CONCEPT_ID in the FACT_RELATIONSHIP table.","CDM_TABLE_NAME":"FACT_RELATIONSHIP","CDM_FIELD_NAME":"relationship_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1134,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"11.35"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":31,"EXECUTION_TIME":"2.177275 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CARE_SITE\ncdmFieldName = place_of_service_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CARE_SITE.place_of_service_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\t\n\t\twhere cdmtable.place_of_service_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.care_site cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field PLACE_OF_SERVICE_CONCEPT_ID in the CARE_SITE table.","CDM_TABLE_NAME":"CARE_SITE","CDM_FIELD_NAME":"place_of_service_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1135,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"11.36"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.604482 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = specialty_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.specialty_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\twhere cdmtable.specialty_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field SPECIALTY_CONCEPT_ID in the PROVIDER table.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"specialty_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1136,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"11.37"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.751256 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = gender_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.gender_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\twhere cdmtable.gender_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field GENDER_CONCEPT_ID in the PROVIDER table.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"gender_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1137,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"11.38"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.919578 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = COST\ncdmFieldName = cost_type_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'COST.cost_type_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\t\n\t\twhere cdmtable.cost_type_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.cost cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field COST_TYPE_CONCEPT_ID in the COST table.","CDM_TABLE_NAME":"COST","CDM_FIELD_NAME":"cost_type_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1138,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"11.39"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.753525 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t\n\t\twhere cdmtable.drug_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field DRUG_CONCEPT_ID in the DRUG_ERA table.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1139,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"11.40"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"1.812180 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = drug_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.drug_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t\n\t\twhere cdmtable.drug_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field DRUG_CONCEPT_ID in the DOSE_ERA table.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"drug_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1140,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"11.41"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"2.481385 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = unit_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.unit_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t\n\t\twhere cdmtable.unit_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field UNIT_CONCEPT_ID in the DOSE_ERA table.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"unit_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1141,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"11.42"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"2.000559 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t\n\t\twhere cdmtable.condition_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"standardConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the standard concept field CONDITION_CONCEPT_ID in the CONDITION_ERA table.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1142,"FAILED":0,"THRESHOLD_VALUE":0,"_row":"11.43"},{"NUM_VIOLATED_ROWS":100,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.945956 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = gender_source_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.gender_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.gender_source_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"sourceConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the source concept field GENDER_SOURCE_CONCEPT_ID in the PERSON table.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"gender_source_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1143,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"12.1"},{"NUM_VIOLATED_ROWS":5,"PCT_VIOLATED_ROWS":0.05,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.568150 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = race_source_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.race_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.race_source_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"sourceConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the source concept field RACE_SOURCE_CONCEPT_ID in the PERSON table.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"race_source_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1144,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"12.2"},{"NUM_VIOLATED_ROWS":95,"PCT_VIOLATED_ROWS":0.95,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.726894 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = ethnicity_source_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.ethnicity_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.ethnicity_source_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"sourceConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the source concept field ETHNICITY_SOURCE_CONCEPT_ID in the PERSON table.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"ethnicity_source_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1145,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"12.3"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.518352 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_source_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.visit_source_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"sourceConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the source concept field VISIT_SOURCE_CONCEPT_ID in the VISIT_OCCURRENCE table.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_source_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1146,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"12.4"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.519649 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_source_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.condition_source_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"sourceConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the source concept field CONDITION_SOURCE_CONCEPT_ID in the CONDITION_OCCURRENCE table.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_source_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1147,"FAILED":0,"THRESHOLD_VALUE":10,"_row":"12.5"},{"NUM_VIOLATED_ROWS":546,"PCT_VIOLATED_ROWS":0.03,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.874156 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_source_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.drug_source_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"sourceConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the source concept field DRUG_SOURCE_CONCEPT_ID in the DRUG_EXPOSURE table.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_source_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1148,"FAILED":0,"THRESHOLD_VALUE":10,"_row":"12.6"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"2.178579 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_source_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.procedure_source_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"sourceConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the source concept field PROCEDURE_SOURCE_CONCEPT_ID in the PROCEDURE_OCCURRENCE table.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_source_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1149,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"12.7"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.743409 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_source_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\twhere cdmtable.device_source_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"sourceConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the source concept field DEVICE_SOURCE_CONCEPT_ID in the DEVICE_EXPOSURE table.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_source_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1150,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"12.8"},{"NUM_VIOLATED_ROWS":775,"PCT_VIOLATED_ROWS":0.0018,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.872892 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_source_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.measurement_source_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"sourceConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the source concept field MEASUREMENT_SOURCE_CONCEPT_ID in the MEASUREMENT table.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_source_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1151,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"12.9"},{"NUM_VIOLATED_ROWS":41,"PCT_VIOLATED_ROWS":0.0028,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.881494 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_source_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_source_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"sourceConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the source concept field VISIT_DETAIL_SOURCE_CONCEPT_ID in the VISIT_DETAIL table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_source_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1152,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"12.10"},{"NUM_VIOLATED_ROWS":38,"PCT_VIOLATED_ROWS":0.0026,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.387925 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = admitting_source_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.admitting_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.admitting_source_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"sourceConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the source concept field ADMITTING_SOURCE_CONCEPT_ID in the VISIT_DETAIL table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"admitting_source_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1153,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"12.11"},{"NUM_VIOLATED_ROWS":1578,"PCT_VIOLATED_ROWS":0.0677,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.096473 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records *for the OBSERVATION.unit_concept_id and MEASUREMENT.unit_concept_id \nthe numerator and denominator are limited to records where value_as_number IS NOT NULL\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_source_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.observation_source_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"sourceConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the source concept field OBSERVATION_SOURCE_CONCEPT_ID in the OBSERVATION table.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_source_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1154,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"12.12"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.151701 secs","QUERY_TEXT":"/*********\nCONCEPT_RECORD_COMPLETENESS\nnumber of 0s / total number of records \n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = specialty_source_concept_id\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROVIDER.specialty_source_concept_id' as violating_field, cdmtable.* \n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\twhere cdmtable.specialty_source_concept_id = 0 \n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n\t\n) denominator\n;\n","CHECK_NAME":"sourceConceptRecordCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value of 0 in the source concept field SPECIALTY_SOURCE_CONCEPT_ID in the PROVIDER table.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"specialty_source_concept_id","SQL_FILE":"field_concept_record_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1155,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"12.13"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":2,"EXECUTION_TIME":"1.848416 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = gender_source_value\nstandardConceptFieldName = GENDER_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'PERSON.gender_source_value' as violating_field, cdmtable.gender_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.gender_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.gender_source_value) + count(distinct case when cdmtable.gender_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the GENDER_SOURCE_VALUE field of the PERSON table mapped to 0.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"gender_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1156,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.1"},{"NUM_VIOLATED_ROWS":1,"PCT_VIOLATED_ROWS":0.1667,"NUM_DENOMINATOR_ROWS":6,"EXECUTION_TIME":"1.936670 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = race_source_value\nstandardConceptFieldName = RACE_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'PERSON.race_source_value' as violating_field, cdmtable.race_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.race_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.race_source_value) + count(distinct case when cdmtable.race_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the RACE_SOURCE_VALUE field of the PERSON table mapped to 0.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"race_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1157,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.2"},{"NUM_VIOLATED_ROWS":1,"PCT_VIOLATED_ROWS":0.5,"NUM_DENOMINATOR_ROWS":2,"EXECUTION_TIME":"1.852614 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = ethnicity_source_value\nstandardConceptFieldName = ETHNICITY_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'PERSON.ethnicity_source_value' as violating_field, cdmtable.ethnicity_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n\t\twhere cdmtable.ethnicity_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.ethnicity_source_value) + count(distinct case when cdmtable.ethnicity_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the ETHNICITY_SOURCE_VALUE field of the PERSON table mapped to 0.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"ethnicity_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1158,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.3"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.238372 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_source_value\nstandardConceptFieldName = VISIT_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'VISIT_OCCURRENCE.visit_source_value' as violating_field, cdmtable.visit_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.visit_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.visit_source_value) + count(distinct case when cdmtable.visit_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the VISIT_SOURCE_VALUE field of the VISIT_OCCURRENCE table mapped to 0.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1159,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.4"},{"NUM_VIOLATED_ROWS":2,"PCT_VIOLATED_ROWS":0.1818,"NUM_DENOMINATOR_ROWS":11,"EXECUTION_TIME":"2.615556 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = admitting_source_value\nstandardConceptFieldName = ADMITTING_SOURCE_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'VISIT_OCCURRENCE.admitting_source_value' as violating_field, cdmtable.admitting_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.admitting_source_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.admitting_source_value) + count(distinct case when cdmtable.admitting_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the ADMITTING_SOURCE_VALUE field of the VISIT_OCCURRENCE table mapped to 0.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"admitting_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1160,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.5"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":11,"EXECUTION_TIME":"2.110058 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = discharge_to_source_value\nstandardConceptFieldName = DISCHARGE_TO_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'VISIT_OCCURRENCE.discharge_to_source_value' as violating_field, cdmtable.discharge_to_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.discharge_to_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.discharge_to_source_value) + count(distinct case when cdmtable.discharge_to_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the DISCHARGE_TO_SOURCE_VALUE field of the VISIT_OCCURRENCE table mapped to 0.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"discharge_to_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1161,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.6"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1232,"EXECUTION_TIME":"2.334713 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_source_value\nstandardConceptFieldName = CONDITION_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'CONDITION_OCCURRENCE.condition_source_value' as violating_field, cdmtable.condition_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.condition_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.condition_source_value) + count(distinct case when cdmtable.condition_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the CONDITION_SOURCE_VALUE field of the CONDITION_OCCURRENCE table mapped to 0.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1162,"FAILED":0,"THRESHOLD_VALUE":10,"_row":"13.7"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.830479 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_status_source_value\nstandardConceptFieldName = CONDITION_STATUS_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'CONDITION_OCCURRENCE.condition_status_source_value' as violating_field, cdmtable.condition_status_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.condition_status_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.condition_status_source_value) + count(distinct case when cdmtable.condition_status_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the CONDITION_STATUS_SOURCE_VALUE field of the CONDITION_OCCURRENCE table mapped to 0.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_status_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1163,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.8"},{"NUM_VIOLATED_ROWS":72,"PCT_VIOLATED_ROWS":0.0535,"NUM_DENOMINATOR_ROWS":1345,"EXECUTION_TIME":"2.000097 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_source_value\nstandardConceptFieldName = DRUG_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'DRUG_EXPOSURE.drug_source_value' as violating_field, cdmtable.drug_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.drug_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.drug_source_value) + count(distinct case when cdmtable.drug_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the DRUG_SOURCE_VALUE field of the DRUG_EXPOSURE table mapped to 0.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1164,"FAILED":0,"THRESHOLD_VALUE":10,"_row":"13.9"},{"NUM_VIOLATED_ROWS":2,"PCT_VIOLATED_ROWS":0.0571,"NUM_DENOMINATOR_ROWS":35,"EXECUTION_TIME":"1.700370 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = route_source_value\nstandardConceptFieldName = ROUTE_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'DRUG_EXPOSURE.route_source_value' as violating_field, cdmtable.route_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n\t\twhere cdmtable.route_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.route_source_value) + count(distinct case when cdmtable.route_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the ROUTE_SOURCE_VALUE field of the DRUG_EXPOSURE table mapped to 0.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"route_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1165,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.10"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":311,"EXECUTION_TIME":"2.926458 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_source_value\nstandardConceptFieldName = PROCEDURE_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'PROCEDURE_OCCURRENCE.procedure_source_value' as violating_field, cdmtable.procedure_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.procedure_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.procedure_source_value) + count(distinct case when cdmtable.procedure_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the PROCEDURE_SOURCE_VALUE field of the PROCEDURE_OCCURRENCE table mapped to 0.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1166,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.11"},{"NUM_VIOLATED_ROWS":1,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.469513 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = modifier_source_value\nstandardConceptFieldName = MODIFIER_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'PROCEDURE_OCCURRENCE.modifier_source_value' as violating_field, cdmtable.modifier_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n\t\twhere cdmtable.modifier_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.modifier_source_value) + count(distinct case when cdmtable.modifier_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the MODIFIER_SOURCE_VALUE field of the PROCEDURE_OCCURRENCE table mapped to 0.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"modifier_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1167,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.12"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3,"EXECUTION_TIME":"2.042163 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_source_value\nstandardConceptFieldName = DEVICE_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'DEVICE_EXPOSURE.device_source_value' as violating_field, cdmtable.device_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n\t\twhere cdmtable.device_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.device_source_value) + count(distinct case when cdmtable.device_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the DEVICE_SOURCE_VALUE field of the DEVICE_EXPOSURE table mapped to 0.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1168,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.13"},{"NUM_VIOLATED_ROWS":370,"PCT_VIOLATED_ROWS":0.5598,"NUM_DENOMINATOR_ROWS":661,"EXECUTION_TIME":"1.984969 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_source_value\nstandardConceptFieldName = MEASUREMENT_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'MEASUREMENT.measurement_source_value' as violating_field, cdmtable.measurement_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.measurement_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.measurement_source_value) + count(distinct case when cdmtable.measurement_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the MEASUREMENT_SOURCE_VALUE field of the MEASUREMENT table mapped to 0.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1169,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.14"},{"NUM_VIOLATED_ROWS":5,"PCT_VIOLATED_ROWS":0.0725,"NUM_DENOMINATOR_ROWS":69,"EXECUTION_TIME":"2.105867 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = unit_source_value\nstandardConceptFieldName = UNIT_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'MEASUREMENT.unit_source_value' as violating_field, cdmtable.unit_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n\t\twhere cdmtable.unit_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.unit_source_value) + count(distinct case when cdmtable.unit_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the UNIT_SOURCE_VALUE field of the MEASUREMENT table mapped to 0.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"unit_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1170,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.15"},{"NUM_VIOLATED_ROWS":41,"PCT_VIOLATED_ROWS":0.0028,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"2.120003 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_source_value\nstandardConceptFieldName = VISIT_DETAIL_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'VISIT_DETAIL.visit_detail_source_value' as violating_field, cdmtable.visit_detail_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.visit_detail_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.visit_detail_source_value) + count(distinct case when cdmtable.visit_detail_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the VISIT_DETAIL_SOURCE_VALUE field of the VISIT_DETAIL table mapped to 0.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1171,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.16"},{"NUM_VIOLATED_ROWS":3,"PCT_VIOLATED_ROWS":0.0909,"NUM_DENOMINATOR_ROWS":33,"EXECUTION_TIME":"1.971348 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = admitting_source_value\nstandardConceptFieldName = ADMITTING_SOURCE_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'VISIT_DETAIL.admitting_source_value' as violating_field, cdmtable.admitting_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.admitting_source_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.admitting_source_value) + count(distinct case when cdmtable.admitting_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the ADMITTING_SOURCE_VALUE field of the VISIT_DETAIL table mapped to 0.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"admitting_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1172,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.17"},{"NUM_VIOLATED_ROWS":1,"PCT_VIOLATED_ROWS":0.0263,"NUM_DENOMINATOR_ROWS":38,"EXECUTION_TIME":"1.971313 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = discharge_to_source_value\nstandardConceptFieldName = DISCHARGE_TO_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'VISIT_DETAIL.discharge_to_source_value' as violating_field, cdmtable.discharge_to_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n\t\twhere cdmtable.discharge_to_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.discharge_to_source_value) + count(distinct case when cdmtable.discharge_to_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the DISCHARGE_TO_SOURCE_VALUE field of the VISIT_DETAIL table mapped to 0.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"discharge_to_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1173,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.18"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":281,"EXECUTION_TIME":"2.002399 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_source_value\nstandardConceptFieldName = OBSERVATION_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'OBSERVATION.observation_source_value' as violating_field, cdmtable.observation_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.observation_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.observation_source_value) + count(distinct case when cdmtable.observation_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the OBSERVATION_SOURCE_VALUE field of the OBSERVATION table mapped to 0.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1174,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.19"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":2,"EXECUTION_TIME":"2.644351 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = unit_source_value\nstandardConceptFieldName = UNIT_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'OBSERVATION.unit_source_value' as violating_field, cdmtable.unit_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.unit_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.unit_source_value) + count(distinct case when cdmtable.unit_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the UNIT_SOURCE_VALUE field of the OBSERVATION table mapped to 0.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"unit_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1175,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.20"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.988201 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = qualifier_source_value\nstandardConceptFieldName = QUALIFIER_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'OBSERVATION.qualifier_source_value' as violating_field, cdmtable.qualifier_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n\t\twhere cdmtable.qualifier_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.qualifier_source_value) + count(distinct case when cdmtable.qualifier_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the QUALIFIER_SOURCE_VALUE field of the OBSERVATION table mapped to 0.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"qualifier_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1176,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.21"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16,"EXECUTION_TIME":"2.103960 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_source_value\nstandardConceptFieldName = SPECIMEN_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'SPECIMEN.specimen_source_value' as violating_field, cdmtable.specimen_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.specimen_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.specimen_source_value) + count(distinct case when cdmtable.specimen_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the SPECIMEN_SOURCE_VALUE field of the SPECIMEN table mapped to 0.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1177,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.22"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.373636 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = unit_source_value\nstandardConceptFieldName = UNIT_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'SPECIMEN.unit_source_value' as violating_field, cdmtable.unit_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.unit_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.unit_source_value) + count(distinct case when cdmtable.unit_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the UNIT_SOURCE_VALUE field of the SPECIMEN table mapped to 0.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"unit_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1178,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.23"},{"NUM_VIOLATED_ROWS":1,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"1.800327 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = anatomic_site_source_value\nstandardConceptFieldName = ANATOMIC_SITE_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'SPECIMEN.anatomic_site_source_value' as violating_field, cdmtable.anatomic_site_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.anatomic_site_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.anatomic_site_source_value) + count(distinct case when cdmtable.anatomic_site_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the ANATOMIC_SITE_SOURCE_VALUE field of the SPECIMEN table mapped to 0.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"anatomic_site_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1179,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.24"},{"NUM_VIOLATED_ROWS":1,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":1,"EXECUTION_TIME":"2.084113 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = disease_status_source_value\nstandardConceptFieldName = DISEASE_STATUS_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'SPECIMEN.disease_status_source_value' as violating_field, cdmtable.disease_status_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n\t\twhere cdmtable.disease_status_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.disease_status_source_value) + count(distinct case when cdmtable.disease_status_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the DISEASE_STATUS_SOURCE_VALUE field of the SPECIMEN table mapped to 0.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"disease_status_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1180,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.25"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.272552 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = specialty_source_value\nstandardConceptFieldName = SPECIALTY_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'PROVIDER.specialty_source_value' as violating_field, cdmtable.specialty_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\twhere cdmtable.specialty_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.specialty_source_value) + count(distinct case when cdmtable.specialty_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the SPECIALTY_SOURCE_VALUE field of the PROVIDER table mapped to 0.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"specialty_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1181,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.26"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.116069 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROVIDER\ncdmFieldName = gender_source_value\nstandardConceptFieldName = GENDER_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'PROVIDER.gender_source_value' as violating_field, cdmtable.gender_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\t\n\t\twhere cdmtable.gender_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.gender_source_value) + count(distinct case when cdmtable.gender_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.provider cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the GENDER_SOURCE_VALUE field of the PROVIDER table mapped to 0.","CDM_TABLE_NAME":"PROVIDER","CDM_FIELD_NAME":"gender_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1182,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.27"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.959114 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_source_value\nstandardConceptFieldName = PAYER_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'PAYER_PLAN_PERIOD.payer_source_value' as violating_field, cdmtable.payer_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.payer_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.payer_source_value) + count(distinct case when cdmtable.payer_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the PAYER_SOURCE_VALUE field of the PAYER_PLAN_PERIOD table mapped to 0.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1183,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.28"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.068234 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = plan_source_value\nstandardConceptFieldName = PLAN_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'PAYER_PLAN_PERIOD.plan_source_value' as violating_field, cdmtable.plan_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.plan_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.plan_source_value) + count(distinct case when cdmtable.plan_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the PLAN_SOURCE_VALUE field of the PAYER_PLAN_PERIOD table mapped to 0.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"plan_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1184,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.29"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.934399 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = sponsor_source_value\nstandardConceptFieldName = SPONSOR_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'PAYER_PLAN_PERIOD.sponsor_source_value' as violating_field, cdmtable.sponsor_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.sponsor_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.sponsor_source_value) + count(distinct case when cdmtable.sponsor_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the SPONSOR_SOURCE_VALUE field of the PAYER_PLAN_PERIOD table mapped to 0.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"sponsor_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1185,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.30"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.881934 secs","QUERY_TEXT":"/*********\nSOURCE_VALUE_COMPLETENESS\nnumber of source values with 0 standard concept / number of distinct source values\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = stop_reason_source_value\nstandardConceptFieldName = STOP_REASON_CONCEPT_ID\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect distinct 'PAYER_PLAN_PERIOD.stop_reason_source_value' as violating_field, cdmtable.stop_reason_source_value\n\t\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\t\n\t\twhere cdmtable.stop_reason_concept_id = 0\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(distinct cdmtable.stop_reason_source_value) + count(distinct case when cdmtable.stop_reason_source_value is null then 1 end)  as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"sourceValueCompleteness","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of distinct source values in the STOP_REASON_SOURCE_VALUE field of the PAYER_PLAN_PERIOD table mapped to 0.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"stop_reason_source_value","SQL_FILE":"field_source_value_completeness.sql","CATEGORY":"Completeness","SUBCATEGORY":"","CONTEXT":"Verification","checkId":1186,"FAILED":0,"THRESHOLD_VALUE":100,"_row":"13.31"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.602566 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = year_of_birth\nplausibleValueLow = 1850\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.year_of_birth' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n    where cdmtable.year_of_birth < 1850\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n\twhere year_of_birth is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the YEAR_OF_BIRTH field of the PERSON table less than 1850.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"year_of_birth","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1187,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.1"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.144789 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = month_of_birth\nplausibleValueLow = 1\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.month_of_birth' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n    where cdmtable.month_of_birth < 1\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n\twhere month_of_birth is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the MONTH_OF_BIRTH field of the PERSON table less than 1.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"month_of_birth","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1188,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.2"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.118741 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = day_of_birth\nplausibleValueLow = 1\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.day_of_birth' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n    where cdmtable.day_of_birth < 1\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n\twhere day_of_birth is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DAY_OF_BIRTH field of the PERSON table less than 1.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"day_of_birth","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1189,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.3"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.640073 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = birth_datetime\nplausibleValueLow = '1850-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.birth_datetime' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\t\n    where cdmtable.birth_datetime < '1850-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n\twhere birth_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the BIRTH_DATETIME field of the PERSON table less than '1850-01-01'.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"birth_datetime","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1190,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.4"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.803288 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = observation_period_start_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.observation_period_start_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\t\n    where cdmtable.observation_period_start_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n\twhere observation_period_start_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the OBSERVATION_PERIOD_START_DATE field of the OBSERVATION_PERIOD table less than '1950-01-01'.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"observation_period_start_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1191,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.5"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.718524 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = observation_period_end_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.observation_period_end_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\t\n    where cdmtable.observation_period_end_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n\twhere observation_period_end_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the OBSERVATION_PERIOD_END_DATE field of the OBSERVATION_PERIOD table less than '1950-01-01'.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"observation_period_end_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1192,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.6"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.442402 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_start_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_start_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n    where cdmtable.visit_start_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n\twhere visit_start_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_START_DATE field of the VISIT_OCCURRENCE table less than '1950-01-01'.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_start_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1193,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.7"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.704837 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_start_datetime\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_start_datetime' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n    where cdmtable.visit_start_datetime < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n\twhere visit_start_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_START_DATETIME field of the VISIT_OCCURRENCE table less than '1950-01-01'.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_start_datetime","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1194,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.8"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.533826 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_end_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_end_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n    where cdmtable.visit_end_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n\twhere visit_end_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_END_DATE field of the VISIT_OCCURRENCE table less than '1950-01-01'.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_end_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1195,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.9"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.618277 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_end_datetime\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_end_datetime' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\t\n    where cdmtable.visit_end_datetime < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n\twhere visit_end_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_END_DATETIME field of the VISIT_OCCURRENCE table less than '1950-01-01'.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_end_datetime","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1196,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.10"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.864774 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_start_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_start_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n    where cdmtable.condition_start_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n\twhere condition_start_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the CONDITION_START_DATE field of the CONDITION_OCCURRENCE table less than '1950-01-01'.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_start_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1197,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.11"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.856811 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_start_datetime\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_start_datetime' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n    where cdmtable.condition_start_datetime < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n\twhere condition_start_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the CONDITION_START_DATETIME field of the CONDITION_OCCURRENCE table less than '1950-01-01'.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_start_datetime","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1198,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.12"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.766419 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_end_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_end_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n    where cdmtable.condition_end_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n\twhere condition_end_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the CONDITION_END_DATE field of the CONDITION_OCCURRENCE table less than '1950-01-01'.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_end_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1199,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.13"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.860523 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_end_datetime\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_end_datetime' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\t\n    where cdmtable.condition_end_datetime < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n\twhere condition_end_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the CONDITION_END_DATETIME field of the CONDITION_OCCURRENCE table less than '1950-01-01'.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_end_datetime","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1200,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.14"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.435445 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_start_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_start_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n    where cdmtable.drug_exposure_start_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n\twhere drug_exposure_start_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DRUG_EXPOSURE_START_DATE field of the DRUG_EXPOSURE table less than '1950-01-01'.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_start_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1201,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.15"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.500310 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_start_datetime\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_start_datetime' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n    where cdmtable.drug_exposure_start_datetime < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n\twhere drug_exposure_start_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DRUG_EXPOSURE_START_DATETIME field of the DRUG_EXPOSURE table less than '1950-01-01'.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_start_datetime","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1202,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.16"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.516464 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_end_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_end_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n    where cdmtable.drug_exposure_end_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n\twhere drug_exposure_end_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DRUG_EXPOSURE_END_DATE field of the DRUG_EXPOSURE table less than '1950-01-01'.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_end_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1203,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.17"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.781307 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_end_datetime\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_end_datetime' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n    where cdmtable.drug_exposure_end_datetime < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n\twhere drug_exposure_end_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DRUG_EXPOSURE_END_DATETIME field of the DRUG_EXPOSURE table less than '1950-01-01'.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_end_datetime","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1204,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.18"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.954143 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = verbatim_end_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.verbatim_end_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n    where cdmtable.verbatim_end_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n\twhere verbatim_end_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VERBATIM_END_DATE field of the DRUG_EXPOSURE table less than '1950-01-01'.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"verbatim_end_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1205,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.19"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.746759 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = refills\nplausibleValueLow = 0\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.refills' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n    where cdmtable.refills < 0\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n\twhere refills is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the REFILLS field of the DRUG_EXPOSURE table less than 0.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"refills","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1206,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.20"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18220,"EXECUTION_TIME":"1.716622 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = quantity\nplausibleValueLow = 0\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.quantity' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n    where cdmtable.quantity < 0\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n\twhere quantity is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the QUANTITY field of the DRUG_EXPOSURE table less than 0.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"quantity","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1207,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.21"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.655547 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = days_supply\nplausibleValueLow = 0\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.days_supply' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\t\n    where cdmtable.days_supply < 0\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n\twhere days_supply is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DAYS_SUPPLY field of the DRUG_EXPOSURE table less than 0.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"days_supply","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1208,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.22"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.904041 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n    where cdmtable.procedure_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n\twhere procedure_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the PROCEDURE_DATE field of the PROCEDURE_OCCURRENCE table less than '1950-01-01'.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1209,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.23"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.787276 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_datetime\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_datetime' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n    where cdmtable.procedure_datetime < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n\twhere procedure_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the PROCEDURE_DATETIME field of the PROCEDURE_OCCURRENCE table less than '1950-01-01'.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_datetime","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1210,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.24"},{"NUM_VIOLATED_ROWS":10,"PCT_VIOLATED_ROWS":0.0003,"NUM_DENOMINATOR_ROWS":29899,"EXECUTION_TIME":"1.602195 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = quantity\nplausibleValueLow = 1\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.quantity' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\t\n    where cdmtable.quantity < 1\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n\twhere quantity is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the QUANTITY field of the PROCEDURE_OCCURRENCE table less than 1.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"quantity","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1211,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.25"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.772435 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_start_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_start_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n    where cdmtable.device_exposure_start_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n\twhere device_exposure_start_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DEVICE_EXPOSURE_START_DATE field of the DEVICE_EXPOSURE table less than '1950-01-01'.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_start_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1212,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.26"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"2.071562 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_start_datetime\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_start_datetime' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n    where cdmtable.device_exposure_start_datetime < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n\twhere device_exposure_start_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DEVICE_EXPOSURE_START_DATETIME field of the DEVICE_EXPOSURE table less than '1950-01-01'.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_start_datetime","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1213,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.27"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.955329 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_end_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_end_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n    where cdmtable.device_exposure_end_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n\twhere device_exposure_end_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DEVICE_EXPOSURE_END_DATE field of the DEVICE_EXPOSURE table less than '1950-01-01'.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_end_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1214,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.28"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.819163 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_end_datetime\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_end_datetime' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n    where cdmtable.device_exposure_end_datetime < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n\twhere device_exposure_end_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DEVICE_EXPOSURE_END_DATETIME field of the DEVICE_EXPOSURE table less than '1950-01-01'.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_end_datetime","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1215,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.29"},{"NUM_VIOLATED_ROWS":277,"PCT_VIOLATED_ROWS":0.9422,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.925766 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = quantity\nplausibleValueLow = 1\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.quantity' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\t\n    where cdmtable.quantity < 1\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n\twhere quantity is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the QUANTITY field of the DEVICE_EXPOSURE table less than 1.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"quantity","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1216,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"14.30"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"2.020307 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\t\n    where cdmtable.measurement_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n\twhere measurement_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the MEASUREMENT_DATE field of the MEASUREMENT table less than '1950-01-01'.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1217,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.31"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.803404 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_start_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_start_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n    where cdmtable.visit_detail_start_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n\twhere visit_detail_start_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_DETAIL_START_DATE field of the VISIT_DETAIL table less than '1950-01-01'.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_start_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1218,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.32"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.974204 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_start_datetime\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_start_datetime' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n    where cdmtable.visit_detail_start_datetime < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n\twhere visit_detail_start_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_DETAIL_START_DATETIME field of the VISIT_DETAIL table less than '1950-01-01'.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_start_datetime","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1219,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.33"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.687908 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_end_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_end_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n    where cdmtable.visit_detail_end_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n\twhere visit_detail_end_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_DETAIL_END_DATE field of the VISIT_DETAIL table less than '1950-01-01'.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_end_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1220,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.34"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.749763 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_end_datetime\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_end_datetime' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\t\n    where cdmtable.visit_detail_end_datetime < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n\twhere visit_detail_end_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_DETAIL_END_DATETIME field of the VISIT_DETAIL table less than '1950-01-01'.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_end_datetime","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1221,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.35"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.840816 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n    where cdmtable.note_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n\twhere note_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the NOTE_DATE field of the NOTE table less than '1950-01-01'.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1222,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.36"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.666045 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_datetime\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_datetime' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\t\n    where cdmtable.note_datetime < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n\twhere note_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the NOTE_DATETIME field of the NOTE table less than '1950-01-01'.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_datetime","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1223,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.37"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.881661 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = nlp_datetime\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.nlp_datetime' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\t\n    where cdmtable.nlp_datetime < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n\twhere nlp_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the NLP_DATETIME field of the NOTE_NLP table less than '1950-01-01'.","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"nlp_datetime","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1224,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.38"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.251068 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n    where cdmtable.observation_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n\twhere observation_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the OBSERVATION_DATE field of the OBSERVATION table less than '1950-01-01'.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1225,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.39"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.724735 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_datetime\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_datetime' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\t\n    where cdmtable.observation_datetime < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n\twhere observation_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the OBSERVATION_DATETIME field of the OBSERVATION table less than '1950-01-01'.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_datetime","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1226,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.40"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"3.120722 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n    where cdmtable.specimen_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n\twhere specimen_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the SPECIMEN_DATE field of the SPECIMEN table less than '1950-01-01'.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1227,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.41"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.934193 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_datetime\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_datetime' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n    where cdmtable.specimen_datetime < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n\twhere specimen_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the SPECIMEN_DATETIME field of the SPECIMEN table less than '1950-01-01'.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_datetime","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1228,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.42"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.442726 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = quantity\nplausibleValueLow = 1\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.quantity' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\t\n    where cdmtable.quantity < 1\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n\twhere quantity is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the QUANTITY field of the SPECIMEN table less than 1.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"quantity","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1229,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.43"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.570923 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_era_start_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_era_start_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t\n    where cdmtable.drug_era_start_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n\twhere drug_era_start_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DRUG_ERA_START_DATE field of the DRUG_ERA table less than '1950-01-01'.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_era_start_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1230,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.44"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.709487 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_era_end_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_era_end_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t\n    where cdmtable.drug_era_end_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n\twhere drug_era_end_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DRUG_ERA_END_DATE field of the DRUG_ERA table less than '1950-01-01'.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_era_end_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1231,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.45"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.695366 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_exposure_count\nplausibleValueLow = 1\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_exposure_count' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t\n    where cdmtable.drug_exposure_count < 1\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n\twhere drug_exposure_count is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DRUG_EXPOSURE_COUNT field of the DRUG_ERA table less than 1.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_exposure_count","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1232,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.46"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.963167 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = gap_days\nplausibleValueLow = 0\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.gap_days' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\t\n    where cdmtable.gap_days < 0\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n\twhere gap_days is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the GAP_DAYS field of the DRUG_ERA table less than 0.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"gap_days","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1233,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.47"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"1.743864 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_value\nplausibleValueLow = 0\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.dose_value' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t\n    where cdmtable.dose_value < 0\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n\twhere dose_value is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DOSE_VALUE field of the DOSE_ERA table less than 0.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_value","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1234,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.48"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"1.733919 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_era_start_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.dose_era_start_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t\n    where cdmtable.dose_era_start_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n\twhere dose_era_start_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DOSE_ERA_START_DATE field of the DOSE_ERA table less than '1950-01-01'.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_era_start_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1235,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.49"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"2.018180 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_era_end_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.dose_era_end_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\t\n    where cdmtable.dose_era_end_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n\twhere dose_era_end_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DOSE_ERA_END_DATE field of the DOSE_ERA table less than '1950-01-01'.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_era_end_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1236,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.50"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"1.747977 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_era_start_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_era_start_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t\n    where cdmtable.condition_era_start_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n\twhere condition_era_start_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the CONDITION_ERA_START_DATE field of the CONDITION_ERA table less than '1950-01-01'.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_era_start_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1237,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.51"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"1.965372 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_era_end_date\nplausibleValueLow = '1950-01-01'\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_era_end_date' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t\n    where cdmtable.condition_era_end_date < '1950-01-01'\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n\twhere condition_era_end_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the CONDITION_ERA_END_DATE field of the CONDITION_ERA table less than '1950-01-01'.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_era_end_date","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1238,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.52"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"1.588470 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_LOW\nget number of records and the proportion to total number of eligible records that fall below this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_occurrence_count\nplausibleValueLow = 1\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_occurrence_count' as violating_field, cdmtable.*\n\t\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\t\n    where cdmtable.condition_occurrence_count < 1\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n\twhere condition_occurrence_count is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the CONDITION_OCCURRENCE_COUNT field of the CONDITION_ERA table less than 1.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_occurrence_count","SQL_FILE":"field_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1239,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"14.53"},{"NUM_VIOLATED_ROWS":100,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.998857 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = year_of_birth\nplausibleValueHigh = YEAR(GETDATE())+1\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.year_of_birth' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.person cdmtable\n    \n    where cdmtable.year_of_birth > EXTRACT(YEAR from CURRENT_DATE())+1\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n  where year_of_birth is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the YEAR_OF_BIRTH field of the PERSON table greater than YEAR(GETDATE())+1.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"year_of_birth","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1240,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.1"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.500726 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = month_of_birth\nplausibleValueHigh = 12\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.month_of_birth' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.person cdmtable\n    \n    where cdmtable.month_of_birth > 12\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n  where month_of_birth is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the MONTH_OF_BIRTH field of the PERSON table greater than 12.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"month_of_birth","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1241,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"15.2"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.831867 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = day_of_birth\nplausibleValueHigh = 31\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.day_of_birth' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.person cdmtable\n    \n    where cdmtable.day_of_birth > 31\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n  where day_of_birth is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DAY_OF_BIRTH field of the PERSON table greater than 31.","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"day_of_birth","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1242,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"15.3"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.732591 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PERSON\ncdmFieldName = birth_datetime\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PERSON.birth_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.person cdmtable\n    \n    where cdmtable.birth_datetime > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.person cdmtable\n\t\n  where birth_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the BIRTH_DATETIME field of the PERSON table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"PERSON","CDM_FIELD_NAME":"birth_datetime","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1243,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"15.4"},{"NUM_VIOLATED_ROWS":100,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.910790 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = observation_period_start_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.observation_period_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.observation_period cdmtable\n    \n    where cdmtable.observation_period_start_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n  where observation_period_start_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the OBSERVATION_PERIOD_START_DATE field of the OBSERVATION_PERIOD table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"observation_period_start_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1244,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.5"},{"NUM_VIOLATED_ROWS":100,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.232309 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = observation_period_end_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.observation_period_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.observation_period cdmtable\n    \n    where cdmtable.observation_period_end_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n  where observation_period_end_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the OBSERVATION_PERIOD_END_DATE field of the OBSERVATION_PERIOD table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"observation_period_end_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1245,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.6"},{"NUM_VIOLATED_ROWS":852,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.873275 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_start_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n    \n    where cdmtable.visit_start_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n  where visit_start_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_START_DATE field of the VISIT_OCCURRENCE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_start_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1246,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.7"},{"NUM_VIOLATED_ROWS":852,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.793441 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_start_datetime\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_start_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n    \n    where cdmtable.visit_start_datetime > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n  where visit_start_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_START_DATETIME field of the VISIT_OCCURRENCE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_start_datetime","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1247,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.8"},{"NUM_VIOLATED_ROWS":852,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.940540 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_end_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n    \n    where cdmtable.visit_end_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n  where visit_end_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_END_DATE field of the VISIT_OCCURRENCE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_end_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1248,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.9"},{"NUM_VIOLATED_ROWS":852,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.103155 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_end_datetime\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_end_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n    \n    where cdmtable.visit_end_datetime > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n  where visit_end_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_END_DATETIME field of the VISIT_OCCURRENCE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_end_datetime","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1249,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.10"},{"NUM_VIOLATED_ROWS":16441,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.749727 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_start_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n    \n    where cdmtable.condition_start_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n  where condition_start_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the CONDITION_START_DATE field of the CONDITION_OCCURRENCE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_start_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1250,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.11"},{"NUM_VIOLATED_ROWS":16441,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.697904 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_start_datetime\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_start_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n    \n    where cdmtable.condition_start_datetime > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n  where condition_start_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the CONDITION_START_DATETIME field of the CONDITION_OCCURRENCE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_start_datetime","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1251,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.12"},{"NUM_VIOLATED_ROWS":16441,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.779657 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_end_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n    \n    where cdmtable.condition_end_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n  where condition_end_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the CONDITION_END_DATE field of the CONDITION_OCCURRENCE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_end_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1252,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.13"},{"NUM_VIOLATED_ROWS":16441,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"2.536450 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_end_datetime\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_end_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n    \n    where cdmtable.condition_end_datetime > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n  where condition_end_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the CONDITION_END_DATETIME field of the CONDITION_OCCURRENCE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_end_datetime","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1253,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.14"},{"NUM_VIOLATED_ROWS":18229,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.887746 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_start_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n    \n    where cdmtable.drug_exposure_start_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n  where drug_exposure_start_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DRUG_EXPOSURE_START_DATE field of the DRUG_EXPOSURE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_start_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1254,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.15"},{"NUM_VIOLATED_ROWS":18229,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.719510 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_start_datetime\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_start_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n    \n    where cdmtable.drug_exposure_start_datetime > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n  where drug_exposure_start_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DRUG_EXPOSURE_START_DATETIME field of the DRUG_EXPOSURE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_start_datetime","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1255,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.16"},{"NUM_VIOLATED_ROWS":18229,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.736484 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_end_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n    \n    where cdmtable.drug_exposure_end_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n  where drug_exposure_end_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DRUG_EXPOSURE_END_DATE field of the DRUG_EXPOSURE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_end_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1256,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.17"},{"NUM_VIOLATED_ROWS":18229,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.824951 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_end_datetime\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_end_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n    \n    where cdmtable.drug_exposure_end_datetime > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n  where drug_exposure_end_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DRUG_EXPOSURE_END_DATETIME field of the DRUG_EXPOSURE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_end_datetime","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1257,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.18"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.004152 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = verbatim_end_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.verbatim_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n    \n    where cdmtable.verbatim_end_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n  where verbatim_end_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VERBATIM_END_DATE field of the DRUG_EXPOSURE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"verbatim_end_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1258,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"15.19"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.951747 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = refills\nplausibleValueHigh = 12\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.refills' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n    \n    where cdmtable.refills > 12\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n  where refills is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the REFILLS field of the DRUG_EXPOSURE table greater than 12.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"refills","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1259,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"15.20"},{"NUM_VIOLATED_ROWS":6,"PCT_VIOLATED_ROWS":0.0003,"NUM_DENOMINATOR_ROWS":18220,"EXECUTION_TIME":"1.965699 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = quantity\nplausibleValueHigh = 1095\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.quantity' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n    \n    where cdmtable.quantity > 1095\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n  where quantity is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the QUANTITY field of the DRUG_EXPOSURE table greater than 1095.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"quantity","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1260,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"15.21"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.818693 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = days_supply\nplausibleValueHigh = 365\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.days_supply' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n    \n    where cdmtable.days_supply > 365\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n  where days_supply is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DAYS_SUPPLY field of the DRUG_EXPOSURE table greater than 365.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"days_supply","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1261,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"15.22"},{"NUM_VIOLATED_ROWS":33237,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"2.019501 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n    \n    where cdmtable.procedure_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n  where procedure_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the PROCEDURE_DATE field of the PROCEDURE_OCCURRENCE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1262,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.23"},{"NUM_VIOLATED_ROWS":33237,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.920734 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_datetime\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n    \n    where cdmtable.procedure_datetime > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n  where procedure_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the PROCEDURE_DATETIME field of the PROCEDURE_OCCURRENCE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_datetime","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1263,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.24"},{"NUM_VIOLATED_ROWS":294,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"2.034469 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_start_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n    \n    where cdmtable.device_exposure_start_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n  where device_exposure_start_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DEVICE_EXPOSURE_START_DATE field of the DEVICE_EXPOSURE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_start_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1264,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.25"},{"NUM_VIOLATED_ROWS":294,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.709614 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_start_datetime\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_start_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n    \n    where cdmtable.device_exposure_start_datetime > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n  where device_exposure_start_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DEVICE_EXPOSURE_START_DATETIME field of the DEVICE_EXPOSURE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_start_datetime","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1265,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.26"},{"NUM_VIOLATED_ROWS":294,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.418453 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_end_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n    \n    where cdmtable.device_exposure_end_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n  where device_exposure_end_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DEVICE_EXPOSURE_END_DATE field of the DEVICE_EXPOSURE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_end_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1266,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.27"},{"NUM_VIOLATED_ROWS":294,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.888498 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_end_datetime\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_end_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n    \n    where cdmtable.device_exposure_end_datetime > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n  where device_exposure_end_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DEVICE_EXPOSURE_END_DATETIME field of the DEVICE_EXPOSURE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_end_datetime","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1267,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.28"},{"NUM_VIOLATED_ROWS":419764,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.755963 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n    \n    where cdmtable.measurement_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n  where measurement_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the MEASUREMENT_DATE field of the MEASUREMENT table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1268,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.29"},{"NUM_VIOLATED_ROWS":14479,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.789646 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_start_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n    \n    where cdmtable.visit_detail_start_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n  where visit_detail_start_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_DETAIL_START_DATE field of the VISIT_DETAIL table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_start_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1269,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.30"},{"NUM_VIOLATED_ROWS":14479,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"2.039842 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_start_datetime\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_start_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n    \n    where cdmtable.visit_detail_start_datetime > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n  where visit_detail_start_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_DETAIL_START_DATETIME field of the VISIT_DETAIL table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_start_datetime","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1270,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.31"},{"NUM_VIOLATED_ROWS":14479,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"2.066053 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_end_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n    \n    where cdmtable.visit_detail_end_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n  where visit_detail_end_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_DETAIL_END_DATE field of the VISIT_DETAIL table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_end_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1271,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.32"},{"NUM_VIOLATED_ROWS":14479,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.745070 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_end_datetime\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_end_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n    \n    where cdmtable.visit_detail_end_datetime > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n  where visit_detail_end_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_DETAIL_END_DATETIME field of the VISIT_DETAIL table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_end_datetime","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1272,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.33"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.834999 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.note cdmtable\n    \n    where cdmtable.note_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n  where note_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the NOTE_DATE field of the NOTE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1273,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"15.34"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.832977 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_datetime\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.note cdmtable\n    \n    where cdmtable.note_datetime > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n  where note_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the NOTE_DATETIME field of the NOTE table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_datetime","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1274,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"15.35"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.917602 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE_NLP\ncdmFieldName = nlp_datetime\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE_NLP.nlp_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.note_nlp cdmtable\n    \n    where cdmtable.nlp_datetime > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note_nlp cdmtable\n\t\n  where nlp_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the NLP_DATETIME field of the NOTE_NLP table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"NOTE_NLP","CDM_FIELD_NAME":"nlp_datetime","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1275,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"15.36"},{"NUM_VIOLATED_ROWS":23306,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.802873 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n    \n    where cdmtable.observation_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n  where observation_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the OBSERVATION_DATE field of the OBSERVATION table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1276,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.37"},{"NUM_VIOLATED_ROWS":23306,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.841825 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_datetime\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n    \n    where cdmtable.observation_datetime > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n  where observation_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the OBSERVATION_DATETIME field of the OBSERVATION table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_datetime","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1277,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.38"},{"NUM_VIOLATED_ROWS":300,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"2.172177 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.specimen cdmtable\n    \n    where cdmtable.specimen_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n  where specimen_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the SPECIMEN_DATE field of the SPECIMEN table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1278,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.39"},{"NUM_VIOLATED_ROWS":300,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.502777 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_datetime\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.specimen cdmtable\n    \n    where cdmtable.specimen_datetime > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n  where specimen_datetime is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the SPECIMEN_DATETIME field of the SPECIMEN table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_datetime","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1279,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.40"},{"NUM_VIOLATED_ROWS":7931,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.668966 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_era_start_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_era_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_era cdmtable\n    \n    where cdmtable.drug_era_start_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n  where drug_era_start_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DRUG_ERA_START_DATE field of the DRUG_ERA table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_era_start_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1280,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.41"},{"NUM_VIOLATED_ROWS":7931,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.771251 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_era_end_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_era_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_era cdmtable\n    \n    where cdmtable.drug_era_end_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n  where drug_era_end_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DRUG_ERA_END_DATE field of the DRUG_ERA table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_era_end_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1281,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.42"},{"NUM_VIOLATED_ROWS":117,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"1.804033 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_era_start_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.dose_era_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.dose_era cdmtable\n    \n    where cdmtable.dose_era_start_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n  where dose_era_start_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DOSE_ERA_START_DATE field of the DOSE_ERA table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_era_start_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1282,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.43"},{"NUM_VIOLATED_ROWS":117,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"2.304659 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_era_end_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.dose_era_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.dose_era cdmtable\n    \n    where cdmtable.dose_era_end_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n  where dose_era_end_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DOSE_ERA_END_DATE field of the DOSE_ERA table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_era_end_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1283,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.44"},{"NUM_VIOLATED_ROWS":3771,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"2.003271 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_era_start_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_era_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.condition_era cdmtable\n    \n    where cdmtable.condition_era_start_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n  where condition_era_start_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the CONDITION_ERA_START_DATE field of the CONDITION_ERA table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_era_start_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1284,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.45"},{"NUM_VIOLATED_ROWS":3771,"PCT_VIOLATED_ROWS":1,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"1.722860 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_VALUE_HIGH\nget number of records and the proportion to total number of eligible records that exceed this threshold\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_era_end_date\nplausibleValueHigh = DATEADD(dd,1,GETDATE())\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_era_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.condition_era cdmtable\n    \n    where cdmtable.condition_era_end_date > DATE_ADD(IF(SAFE_CAST(CURRENT_DATE()  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(CURRENT_DATE()  AS STRING)),SAFE_CAST(CURRENT_DATE()  AS DATE)), interval 1 DAY)\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n  where condition_era_end_date is not null\n) denominator\n;\n","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the CONDITION_ERA_END_DATE field of the CONDITION_ERA table greater than DATEADD(DD,1,GETDATE()).","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_era_end_date","SQL_FILE":"field_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1285,"FAILED":1,"THRESHOLD_VALUE":1,"_row":"15.46"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"2.449973 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = observation_period_start_date\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.observation_period_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.observation_period cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.observation_period_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.observation_period_start_date  AS STRING)),SAFE_CAST(cdmtable.observation_period_start_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the OBSERVATION_PERIOD_START_DATE field of the OBSERVATION_PERIOD that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"observation_period_start_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1286,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.1"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":100,"EXECUTION_TIME":"1.673169 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = observation_period_end_date\nplausibleTemporalAfterTableName = OBSERVATION_PERIOD\nplausibleTemporalAfterFieldName = OBSERVATION_PERIOD_START_DATE\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.observation_period_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.observation_period cdmtable\n    \n\t\t\n    where IF(SAFE_CAST(observation_period_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(observation_period_start_date  AS STRING)),SAFE_CAST(observation_period_start_date  AS DATE)) > IF(SAFE_CAST(cdmtable.observation_period_end_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.observation_period_end_date  AS STRING)),SAFE_CAST(cdmtable.observation_period_end_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the OBSERVATION_PERIOD_END_DATE field of the OBSERVATION_PERIOD that occurs prior to the date in the OBSERVATION_PERIOD_START_DATE field of the OBSERVATION_PERIOD table.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"observation_period_end_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1287,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.2"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"2.089032 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_start_date\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.visit_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.visit_start_date  AS STRING)),SAFE_CAST(cdmtable.visit_start_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_START_DATE field of the VISIT_OCCURRENCE that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_start_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1288,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.3"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.873154 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_start_datetime\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_start_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.visit_start_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.visit_start_datetime  AS STRING)),SAFE_CAST(cdmtable.visit_start_datetime  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_START_DATETIME field of the VISIT_OCCURRENCE that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_start_datetime","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1289,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.4"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.935519 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_end_date\nplausibleTemporalAfterTableName = VISIT_OCCURRENCE\nplausibleTemporalAfterFieldName = VISIT_START_DATE\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n    \n\t\t\n    where IF(SAFE_CAST(visit_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(visit_start_date  AS STRING)),SAFE_CAST(visit_start_date  AS DATE)) > IF(SAFE_CAST(cdmtable.visit_end_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.visit_end_date  AS STRING)),SAFE_CAST(cdmtable.visit_end_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_END_DATE field of the VISIT_OCCURRENCE that occurs prior to the date in the VISIT_START_DATE field of the VISIT_OCCURRENCE table.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_end_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1290,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.5"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":852,"EXECUTION_TIME":"1.816985 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_end_datetime\nplausibleTemporalAfterTableName = VISIT_OCCURRENCE\nplausibleTemporalAfterFieldName = VISIT_START_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_end_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n    \n\t\t\n    where IF(SAFE_CAST(visit_start_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(visit_start_datetime  AS STRING)),SAFE_CAST(visit_start_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.visit_end_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.visit_end_datetime  AS STRING)),SAFE_CAST(cdmtable.visit_end_datetime  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_END_DATETIME field of the VISIT_OCCURRENCE that occurs prior to the date in the VISIT_START_DATETIME field of the VISIT_OCCURRENCE table.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_end_datetime","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1291,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.6"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.818722 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_start_date\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.condition_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.condition_start_date  AS STRING)),SAFE_CAST(cdmtable.condition_start_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the CONDITION_START_DATE field of the CONDITION_OCCURRENCE that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_start_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1292,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.7"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"2.288788 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_start_datetime\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_start_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.condition_start_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.condition_start_datetime  AS STRING)),SAFE_CAST(cdmtable.condition_start_datetime  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the CONDITION_START_DATETIME field of the CONDITION_OCCURRENCE that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_start_datetime","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1293,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.8"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.942120 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_end_date\nplausibleTemporalAfterTableName = CONDITION_OCCURRENCE\nplausibleTemporalAfterFieldName = CONDITION_START_DATE\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n    \n\t\t\n    where IF(SAFE_CAST(condition_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(condition_start_date  AS STRING)),SAFE_CAST(condition_start_date  AS DATE)) > IF(SAFE_CAST(cdmtable.condition_end_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.condition_end_date  AS STRING)),SAFE_CAST(cdmtable.condition_end_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the CONDITION_END_DATE field of the CONDITION_OCCURRENCE that occurs prior to the date in the CONDITION_START_DATE field of the CONDITION_OCCURRENCE table.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_end_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1294,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.9"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":16441,"EXECUTION_TIME":"1.772998 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_end_datetime\nplausibleTemporalAfterTableName = CONDITION_OCCURRENCE\nplausibleTemporalAfterFieldName = CONDITION_START_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_end_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n    \n\t\t\n    where IF(SAFE_CAST(condition_start_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(condition_start_datetime  AS STRING)),SAFE_CAST(condition_start_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.condition_end_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.condition_end_datetime  AS STRING)),SAFE_CAST(cdmtable.condition_end_datetime  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the CONDITION_END_DATETIME field of the CONDITION_OCCURRENCE that occurs prior to the date in the CONDITION_START_DATETIME field of the CONDITION_OCCURRENCE table.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_end_datetime","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1295,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.10"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.957511 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_start_date\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.drug_exposure_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.drug_exposure_start_date  AS STRING)),SAFE_CAST(cdmtable.drug_exposure_start_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DRUG_EXPOSURE_START_DATE field of the DRUG_EXPOSURE that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_start_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1296,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.11"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.932809 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_start_datetime\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_start_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.drug_exposure_start_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.drug_exposure_start_datetime  AS STRING)),SAFE_CAST(cdmtable.drug_exposure_start_datetime  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DRUG_EXPOSURE_START_DATETIME field of the DRUG_EXPOSURE that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_start_datetime","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1297,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.12"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"1.764042 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_end_date\nplausibleTemporalAfterTableName = DRUG_EXPOSURE\nplausibleTemporalAfterFieldName = DRUG_EXPOSURE_START_DATE\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n    \n\t\t\n    where IF(SAFE_CAST(drug_exposure_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(drug_exposure_start_date  AS STRING)),SAFE_CAST(drug_exposure_start_date  AS DATE)) > IF(SAFE_CAST(cdmtable.drug_exposure_end_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.drug_exposure_end_date  AS STRING)),SAFE_CAST(cdmtable.drug_exposure_end_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DRUG_EXPOSURE_END_DATE field of the DRUG_EXPOSURE that occurs prior to the date in the DRUG_EXPOSURE_START_DATE field of the DRUG_EXPOSURE table.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_end_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1298,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.13"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.156832 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_end_datetime\nplausibleTemporalAfterTableName = DRUG_EXPOSURE\nplausibleTemporalAfterFieldName = DRUG_EXPOSURE_START_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_end_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n    \n\t\t\n    where IF(SAFE_CAST(drug_exposure_start_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(drug_exposure_start_datetime  AS STRING)),SAFE_CAST(drug_exposure_start_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.drug_exposure_end_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.drug_exposure_end_datetime  AS STRING)),SAFE_CAST(cdmtable.drug_exposure_end_datetime  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DRUG_EXPOSURE_END_DATETIME field of the DRUG_EXPOSURE that occurs prior to the date in the DRUG_EXPOSURE_START_DATETIME field of the DRUG_EXPOSURE table.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_end_datetime","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1299,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.14"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18229,"EXECUTION_TIME":"2.266888 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = verbatim_end_date\nplausibleTemporalAfterTableName = DRUG_EXPOSURE\nplausibleTemporalAfterFieldName = DRUG_EXPOSURE_START_DATE\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.verbatim_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n    \n\t\t\n    where IF(SAFE_CAST(drug_exposure_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(drug_exposure_start_date  AS STRING)),SAFE_CAST(drug_exposure_start_date  AS DATE)) > IF(SAFE_CAST(cdmtable.verbatim_end_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.verbatim_end_date  AS STRING)),SAFE_CAST(cdmtable.verbatim_end_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VERBATIM_END_DATE field of the DRUG_EXPOSURE that occurs prior to the date in the DRUG_EXPOSURE_START_DATE field of the DRUG_EXPOSURE table.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"verbatim_end_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1300,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.15"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.911933 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_date\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.procedure_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.procedure_date  AS STRING)),SAFE_CAST(cdmtable.procedure_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the PROCEDURE_DATE field of the PROCEDURE_OCCURRENCE that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1301,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.16"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":33237,"EXECUTION_TIME":"1.843083 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_datetime\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.procedure_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.procedure_datetime  AS STRING)),SAFE_CAST(cdmtable.procedure_datetime  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the PROCEDURE_DATETIME field of the PROCEDURE_OCCURRENCE that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_datetime","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1302,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.17"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"2.229934 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_start_date\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.device_exposure_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.device_exposure_start_date  AS STRING)),SAFE_CAST(cdmtable.device_exposure_start_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DEVICE_EXPOSURE_START_DATE field of the DEVICE_EXPOSURE that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_start_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1303,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.18"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.879675 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_start_datetime\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_start_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.device_exposure_start_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.device_exposure_start_datetime  AS STRING)),SAFE_CAST(cdmtable.device_exposure_start_datetime  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DEVICE_EXPOSURE_START_DATETIME field of the DEVICE_EXPOSURE that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_start_datetime","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1304,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.19"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"1.963898 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_end_date\nplausibleTemporalAfterTableName = DEVICE_EXPOSURE\nplausibleTemporalAfterFieldName = DEVICE_EXPOSURE_START_DATE\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n    \n\t\t\n    where IF(SAFE_CAST(device_exposure_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(device_exposure_start_date  AS STRING)),SAFE_CAST(device_exposure_start_date  AS DATE)) > IF(SAFE_CAST(cdmtable.device_exposure_end_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.device_exposure_end_date  AS STRING)),SAFE_CAST(cdmtable.device_exposure_end_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DEVICE_EXPOSURE_END_DATE field of the DEVICE_EXPOSURE that occurs prior to the date in the DEVICE_EXPOSURE_START_DATE field of the DEVICE_EXPOSURE table.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_end_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1305,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.20"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":294,"EXECUTION_TIME":"2.041024 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_end_datetime\nplausibleTemporalAfterTableName = DEVICE_EXPOSURE\nplausibleTemporalAfterFieldName = DEVICE_EXPOSURE_START_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_end_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n    \n\t\t\n    where IF(SAFE_CAST(device_exposure_start_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(device_exposure_start_datetime  AS STRING)),SAFE_CAST(device_exposure_start_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.device_exposure_end_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.device_exposure_end_datetime  AS STRING)),SAFE_CAST(cdmtable.device_exposure_end_datetime  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DEVICE_EXPOSURE_END_DATETIME field of the DEVICE_EXPOSURE that occurs prior to the date in the DEVICE_EXPOSURE_START_DATETIME field of the DEVICE_EXPOSURE table.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_end_datetime","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1306,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.21"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":419764,"EXECUTION_TIME":"1.816956 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = measurement_date\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'MEASUREMENT.measurement_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.measurement cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.measurement_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.measurement_date  AS STRING)),SAFE_CAST(cdmtable.measurement_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the MEASUREMENT_DATE field of the MEASUREMENT that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"measurement_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1307,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.22"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.875325 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_start_date\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.visit_detail_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.visit_detail_start_date  AS STRING)),SAFE_CAST(cdmtable.visit_detail_start_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_DETAIL_START_DATE field of the VISIT_DETAIL that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_start_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1308,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.23"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"2.267023 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_start_datetime\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_start_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.visit_detail_start_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.visit_detail_start_datetime  AS STRING)),SAFE_CAST(cdmtable.visit_detail_start_datetime  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_DETAIL_START_DATETIME field of the VISIT_DETAIL that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_start_datetime","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1309,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.24"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.686226 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_end_date\nplausibleTemporalAfterTableName = VISIT_OCCURRENCE\nplausibleTemporalAfterFieldName = VISIT_DETAIL_START_DATE\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.visit_occurrence plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(visit_detail_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(visit_detail_start_date  AS STRING)),SAFE_CAST(visit_detail_start_date  AS DATE)) > IF(SAFE_CAST(cdmtable.visit_detail_end_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.visit_detail_end_date  AS STRING)),SAFE_CAST(cdmtable.visit_detail_end_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_DETAIL_END_DATE field of the VISIT_DETAIL that occurs prior to the date in the VISIT_DETAIL_START_DATE field of the VISIT_OCCURRENCE table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_end_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1310,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.25"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14479,"EXECUTION_TIME":"1.991632 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_end_datetime\nplausibleTemporalAfterTableName = VISIT_OCCURRENCE\nplausibleTemporalAfterFieldName = VISIT_DETAIL_START_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_end_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.visit_occurrence plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(visit_detail_start_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(visit_detail_start_datetime  AS STRING)),SAFE_CAST(visit_detail_start_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.visit_detail_end_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.visit_detail_end_datetime  AS STRING)),SAFE_CAST(cdmtable.visit_detail_end_datetime  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the VISIT_DETAIL_END_DATETIME field of the VISIT_DETAIL that occurs prior to the date in the VISIT_DETAIL_START_DATETIME field of the VISIT_OCCURRENCE table.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_end_datetime","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1311,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.26"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.034584 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_date\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.note cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.note_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.note_date  AS STRING)),SAFE_CAST(cdmtable.note_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the NOTE_DATE field of the NOTE that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1312,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.27"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.349739 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = NOTE\ncdmFieldName = note_datetime\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'NOTE.note_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.note cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.note_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.note_datetime  AS STRING)),SAFE_CAST(cdmtable.note_datetime  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.note cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the NOTE_DATETIME field of the NOTE that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"NOTE","CDM_FIELD_NAME":"note_datetime","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1313,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.28"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"1.809625 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_date\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.observation_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.observation_date  AS STRING)),SAFE_CAST(cdmtable.observation_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the OBSERVATION_DATE field of the OBSERVATION that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1314,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.29"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":23306,"EXECUTION_TIME":"2.773037 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = observation_datetime\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION.observation_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.observation cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.observation_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.observation_datetime  AS STRING)),SAFE_CAST(cdmtable.observation_datetime  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the OBSERVATION_DATETIME field of the OBSERVATION that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"observation_datetime","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1315,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.30"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.718805 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_date\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.specimen cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.specimen_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.specimen_date  AS STRING)),SAFE_CAST(cdmtable.specimen_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the SPECIMEN_DATE field of the SPECIMEN that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1316,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.31"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":300,"EXECUTION_TIME":"1.955809 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = SPECIMEN\ncdmFieldName = specimen_datetime\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'SPECIMEN.specimen_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.specimen cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.specimen_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.specimen_datetime  AS STRING)),SAFE_CAST(cdmtable.specimen_datetime  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.specimen cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the SPECIMEN_DATETIME field of the SPECIMEN that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"SPECIMEN","CDM_FIELD_NAME":"specimen_datetime","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1317,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.32"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.471297 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PAYER_PLAN_PERIOD\ncdmFieldName = payer_plan_period_end_date\nplausibleTemporalAfterTableName = PAYER_PLAN_PERIOD\nplausibleTemporalAfterFieldName = PAYER_PLAN_PERIOD_START_DATE\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PAYER_PLAN_PERIOD.payer_plan_period_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n    \n\t\t\n    where IF(SAFE_CAST(payer_plan_period_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(payer_plan_period_start_date  AS STRING)),SAFE_CAST(payer_plan_period_start_date  AS DATE)) > IF(SAFE_CAST(cdmtable.payer_plan_period_end_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.payer_plan_period_end_date  AS STRING)),SAFE_CAST(cdmtable.payer_plan_period_end_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.payer_plan_period cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the PAYER_PLAN_PERIOD_END_DATE field of the PAYER_PLAN_PERIOD that occurs prior to the date in the PAYER_PLAN_PERIOD_START_DATE field of the PAYER_PLAN_PERIOD table.","CDM_TABLE_NAME":"PAYER_PLAN_PERIOD","CDM_FIELD_NAME":"payer_plan_period_end_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1318,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.33"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"2.034923 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_era_start_date\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_era_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_era cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.drug_era_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.drug_era_start_date  AS STRING)),SAFE_CAST(cdmtable.drug_era_start_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DRUG_ERA_START_DATE field of the DRUG_ERA that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_era_start_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1319,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.34"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":7931,"EXECUTION_TIME":"1.679716 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_era_end_date\nplausibleTemporalAfterTableName = DRUG_ERA\nplausibleTemporalAfterFieldName = DRUG_ERA_START_DATE\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_era_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_era cdmtable\n    \n\t\t\n    where IF(SAFE_CAST(drug_era_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(drug_era_start_date  AS STRING)),SAFE_CAST(drug_era_start_date  AS DATE)) > IF(SAFE_CAST(cdmtable.drug_era_end_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.drug_era_end_date  AS STRING)),SAFE_CAST(cdmtable.drug_era_end_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DRUG_ERA_END_DATE field of the DRUG_ERA that occurs prior to the date in the DRUG_ERA_START_DATE field of the DRUG_ERA table.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_era_end_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1320,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.35"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"2.418239 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_era_start_date\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.dose_era_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.dose_era cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.dose_era_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.dose_era_start_date  AS STRING)),SAFE_CAST(cdmtable.dose_era_start_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DOSE_ERA_START_DATE field of the DOSE_ERA that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_era_start_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1321,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.36"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":117,"EXECUTION_TIME":"2.088545 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_era_end_date\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.dose_era_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.dose_era cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.dose_era_end_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.dose_era_end_date  AS STRING)),SAFE_CAST(cdmtable.dose_era_end_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the DOSE_ERA_END_DATE field of the DOSE_ERA that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_era_end_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1322,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.37"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"2.058006 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_era_start_date\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_era_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.condition_era cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.condition_era_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.condition_era_start_date  AS STRING)),SAFE_CAST(cdmtable.condition_era_start_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the CONDITION_ERA_START_DATE field of the CONDITION_ERA that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_era_start_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1323,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.38"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":3771,"EXECUTION_TIME":"1.750088 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_TEMPORAL_AFTER\nget number of records and the proportion to total number of eligible records with datetimes that do not occur on or after their corresponding datetimes\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_era_end_date\nplausibleTemporalAfterTableName = PERSON\nplausibleTemporalAfterFieldName = BIRTH_DATETIME\n\n**********/\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_era_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.condition_era cdmtable\n    \n\t\tjoin mimiciv_demo_current_cdm_531.person plausibletable\n\t\t\ton cdmtable.person_id = plausibletable.person_id\n\t\t\n\t\t\n    where IF(SAFE_CAST(birth_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(birth_datetime  AS STRING)),SAFE_CAST(birth_datetime  AS DATE)) > IF(SAFE_CAST(cdmtable.condition_era_end_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.condition_era_end_date  AS STRING)),SAFE_CAST(cdmtable.condition_era_end_date  AS DATE))\n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n) denominator\n;\n","CHECK_NAME":"plausibleTemporalAfter","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"The number and percent of records with a value in the CONDITION_ERA_END_DATE field of the CONDITION_ERA that occurs prior to the date in the BIRTH_DATETIME field of the PERSON table.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_era_end_date","SQL_FILE":"field_plausible_temporal_after.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1324,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"16.39"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":15,"EXECUTION_TIME":"2.195539 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = observation_period_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.observation_period_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.observation_period cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.observation_period_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.observation_period_start_date  AS STRING)),SAFE_CAST(cdmtable.observation_period_start_date  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the OBSERVATION_PERIOD_START_DATE field of the OBSERVATION_PERIOD table that occurs after death.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"observation_period_start_date","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1325,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.1"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":15,"EXECUTION_TIME":"2.160970 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION_PERIOD\ncdmFieldName = observation_period_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'OBSERVATION_PERIOD.observation_period_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.observation_period cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.observation_period_end_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.observation_period_end_date  AS STRING)),SAFE_CAST(cdmtable.observation_period_end_date  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation_period cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the OBSERVATION_PERIOD_END_DATE field of the OBSERVATION_PERIOD table that occurs after death.","CDM_TABLE_NAME":"OBSERVATION_PERIOD","CDM_FIELD_NAME":"observation_period_end_date","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1326,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.2"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":165,"EXECUTION_TIME":"1.787148 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.visit_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.visit_start_date  AS STRING)),SAFE_CAST(cdmtable.visit_start_date  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the VISIT_START_DATE field of the VISIT_OCCURRENCE table that occurs after death.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_start_date","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1327,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.3"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":165,"EXECUTION_TIME":"2.071913 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_start_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_start_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.visit_start_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.visit_start_datetime  AS STRING)),SAFE_CAST(cdmtable.visit_start_datetime  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the VISIT_START_DATETIME field of the VISIT_OCCURRENCE table that occurs after death.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_start_datetime","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1328,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.4"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":165,"EXECUTION_TIME":"1.850131 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.visit_end_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.visit_end_date  AS STRING)),SAFE_CAST(cdmtable.visit_end_date  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the VISIT_END_DATE field of the VISIT_OCCURRENCE table that occurs after death.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_end_date","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1329,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.5"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":165,"EXECUTION_TIME":"2.082221 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_OCCURRENCE\ncdmFieldName = visit_end_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_OCCURRENCE.visit_end_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.visit_end_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.visit_end_datetime  AS STRING)),SAFE_CAST(cdmtable.visit_end_datetime  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_occurrence cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the VISIT_END_DATETIME field of the VISIT_OCCURRENCE table that occurs after death.","CDM_TABLE_NAME":"VISIT_OCCURRENCE","CDM_FIELD_NAME":"visit_end_datetime","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1330,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.6"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":4336,"EXECUTION_TIME":"1.950220 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.condition_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.condition_start_date  AS STRING)),SAFE_CAST(cdmtable.condition_start_date  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the CONDITION_START_DATE field of the CONDITION_OCCURRENCE table that occurs after death.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_start_date","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1331,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.7"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":4336,"EXECUTION_TIME":"1.872171 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_start_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_start_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.condition_start_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.condition_start_datetime  AS STRING)),SAFE_CAST(cdmtable.condition_start_datetime  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the CONDITION_START_DATETIME field of the CONDITION_OCCURRENCE table that occurs after death.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_start_datetime","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1332,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.8"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":4336,"EXECUTION_TIME":"1.960555 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.condition_end_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.condition_end_date  AS STRING)),SAFE_CAST(cdmtable.condition_end_date  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the CONDITION_END_DATE field of the CONDITION_OCCURRENCE table that occurs after death.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_end_date","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1333,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.9"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":4336,"EXECUTION_TIME":"2.016524 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_OCCURRENCE\ncdmFieldName = condition_end_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_OCCURRENCE.condition_end_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.condition_end_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.condition_end_datetime  AS STRING)),SAFE_CAST(cdmtable.condition_end_datetime  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_occurrence cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the CONDITION_END_DATETIME field of the CONDITION_OCCURRENCE table that occurs after death.","CDM_TABLE_NAME":"CONDITION_OCCURRENCE","CDM_FIELD_NAME":"condition_end_datetime","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1334,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.10"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":4147,"EXECUTION_TIME":"1.904236 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.drug_exposure_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.drug_exposure_start_date  AS STRING)),SAFE_CAST(cdmtable.drug_exposure_start_date  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the DRUG_EXPOSURE_START_DATE field of the DRUG_EXPOSURE table that occurs after death.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_start_date","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1335,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.11"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":4147,"EXECUTION_TIME":"1.856109 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_start_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_start_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.drug_exposure_start_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.drug_exposure_start_datetime  AS STRING)),SAFE_CAST(cdmtable.drug_exposure_start_datetime  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the DRUG_EXPOSURE_START_DATETIME field of the DRUG_EXPOSURE table that occurs after death.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_start_datetime","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1336,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.12"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":4147,"EXECUTION_TIME":"2.073091 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.drug_exposure_end_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.drug_exposure_end_date  AS STRING)),SAFE_CAST(cdmtable.drug_exposure_end_date  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the DRUG_EXPOSURE_END_DATE field of the DRUG_EXPOSURE table that occurs after death.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_end_date","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1337,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.13"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":4147,"EXECUTION_TIME":"1.955971 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = drug_exposure_end_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.drug_exposure_end_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.drug_exposure_end_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.drug_exposure_end_datetime  AS STRING)),SAFE_CAST(cdmtable.drug_exposure_end_datetime  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the DRUG_EXPOSURE_END_DATETIME field of the DRUG_EXPOSURE table that occurs after death.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"drug_exposure_end_datetime","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1338,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.14"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":4147,"EXECUTION_TIME":"1.750917 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_EXPOSURE\ncdmFieldName = verbatim_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_EXPOSURE.verbatim_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.verbatim_end_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.verbatim_end_date  AS STRING)),SAFE_CAST(cdmtable.verbatim_end_date  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_exposure cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the VERBATIM_END_DATE field of the DRUG_EXPOSURE table that occurs after death.","CDM_TABLE_NAME":"DRUG_EXPOSURE","CDM_FIELD_NAME":"verbatim_end_date","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1339,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.15"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":10585,"EXECUTION_TIME":"1.816565 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.procedure_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.procedure_date  AS STRING)),SAFE_CAST(cdmtable.procedure_date  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the PROCEDURE_DATE field of the PROCEDURE_OCCURRENCE table that occurs after death.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_date","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1340,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.16"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":10585,"EXECUTION_TIME":"1.903821 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = PROCEDURE_OCCURRENCE\ncdmFieldName = procedure_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'PROCEDURE_OCCURRENCE.procedure_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.procedure_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.procedure_datetime  AS STRING)),SAFE_CAST(cdmtable.procedure_datetime  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.procedure_occurrence cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the PROCEDURE_DATETIME field of the PROCEDURE_OCCURRENCE table that occurs after death.","CDM_TABLE_NAME":"PROCEDURE_OCCURRENCE","CDM_FIELD_NAME":"procedure_datetime","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1341,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.17"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":46,"EXECUTION_TIME":"2.067164 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.device_exposure_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.device_exposure_start_date  AS STRING)),SAFE_CAST(cdmtable.device_exposure_start_date  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the DEVICE_EXPOSURE_START_DATE field of the DEVICE_EXPOSURE table that occurs after death.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_start_date","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1342,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.18"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":46,"EXECUTION_TIME":"1.704031 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_start_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_start_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.device_exposure_start_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.device_exposure_start_datetime  AS STRING)),SAFE_CAST(cdmtable.device_exposure_start_datetime  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the DEVICE_EXPOSURE_START_DATETIME field of the DEVICE_EXPOSURE table that occurs after death.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_start_datetime","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1343,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.19"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":46,"EXECUTION_TIME":"1.833151 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.device_exposure_end_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.device_exposure_end_date  AS STRING)),SAFE_CAST(cdmtable.device_exposure_end_date  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the DEVICE_EXPOSURE_END_DATE field of the DEVICE_EXPOSURE table that occurs after death.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_end_date","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1344,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.20"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":46,"EXECUTION_TIME":"1.683698 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DEVICE_EXPOSURE\ncdmFieldName = device_exposure_end_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DEVICE_EXPOSURE.device_exposure_end_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.device_exposure cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.device_exposure_end_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.device_exposure_end_datetime  AS STRING)),SAFE_CAST(cdmtable.device_exposure_end_datetime  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.device_exposure cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the DEVICE_EXPOSURE_END_DATETIME field of the DEVICE_EXPOSURE table that occurs after death.","CDM_TABLE_NAME":"DEVICE_EXPOSURE","CDM_FIELD_NAME":"device_exposure_end_datetime","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1345,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.21"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":174,"EXECUTION_TIME":"2.320501 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.visit_detail_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.visit_detail_start_date  AS STRING)),SAFE_CAST(cdmtable.visit_detail_start_date  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the VISIT_DETAIL_START_DATE field of the VISIT_DETAIL table that occurs after death.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_start_date","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1346,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.22"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":174,"EXECUTION_TIME":"2.018016 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_start_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_start_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.visit_detail_start_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.visit_detail_start_datetime  AS STRING)),SAFE_CAST(cdmtable.visit_detail_start_datetime  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the VISIT_DETAIL_START_DATETIME field of the VISIT_DETAIL table that occurs after death.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_start_datetime","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1347,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.23"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":174,"EXECUTION_TIME":"2.279235 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_end_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_end_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.visit_detail_end_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.visit_detail_end_date  AS STRING)),SAFE_CAST(cdmtable.visit_detail_end_date  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the VISIT_DETAIL_END_DATE field of the VISIT_DETAIL table that occurs after death.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_end_date","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1348,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.24"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":174,"EXECUTION_TIME":"1.965956 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = VISIT_DETAIL\ncdmFieldName = visit_detail_end_datetime\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'VISIT_DETAIL.visit_detail_end_datetime' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.visit_detail cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.visit_detail_end_datetime  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.visit_detail_end_datetime  AS STRING)),SAFE_CAST(cdmtable.visit_detail_end_datetime  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.visit_detail cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the VISIT_DETAIL_END_DATETIME field of the VISIT_DETAIL table that occurs after death.","CDM_TABLE_NAME":"VISIT_DETAIL","CDM_FIELD_NAME":"visit_detail_end_datetime","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1349,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.25"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1590,"EXECUTION_TIME":"1.803498 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DRUG_ERA\ncdmFieldName = drug_era_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DRUG_ERA.drug_era_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.drug_era cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.drug_era_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.drug_era_start_date  AS STRING)),SAFE_CAST(cdmtable.drug_era_start_date  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.drug_era cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the DRUG_ERA_START_DATE field of the DRUG_ERA table that occurs after death.","CDM_TABLE_NAME":"DRUG_ERA","CDM_FIELD_NAME":"drug_era_start_date","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1350,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.26"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":29,"EXECUTION_TIME":"1.886636 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = DOSE_ERA\ncdmFieldName = dose_era_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'DOSE_ERA.dose_era_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.dose_era cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.dose_era_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.dose_era_start_date  AS STRING)),SAFE_CAST(cdmtable.dose_era_start_date  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.dose_era cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the DOSE_ERA_START_DATE field of the DOSE_ERA table that occurs after death.","CDM_TABLE_NAME":"DOSE_ERA","CDM_FIELD_NAME":"dose_era_start_date","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1351,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.27"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":760,"EXECUTION_TIME":"1.771697 secs","QUERY_TEXT":"\n/*********\nPLAUSIBLE_DURING_LIFE\nget number of events that occur after death event (PLAUSIBLE_DURING_LIFE == Yes)\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = CONDITION_ERA\ncdmFieldName = condition_era_start_date\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(violated_rows.violating_field) as num_violated_rows\n\tfrom\n\t(\n\t\tselect 'CONDITION_ERA.condition_era_start_date' as violating_field, cdmtable.*\n    from mimiciv_demo_current_cdm_531.condition_era cdmtable\n    \n    join mimiciv_demo_current_cdm_531.death de on cdmtable.person_id = de.person_id\n    where IF(SAFE_CAST(cdmtable.condition_era_start_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(cdmtable.condition_era_start_date  AS STRING)),SAFE_CAST(cdmtable.condition_era_start_date  AS DATE)) > DATE_ADD(IF(SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS STRING)),SAFE_CAST(IF(SAFE_CAST(de.death_date  AS DATE) IS NULL,PARSE_DATE('%Y%m%d', cast(de.death_date  AS STRING)),SAFE_CAST(de.death_date  AS DATE))  AS DATE)), interval 60 DAY) \n\t) violated_rows\n) violated_row_count,\n(\n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.condition_era cdmtable\n\t\n\twhere person_id in\n\t( select person_id from mimiciv_demo_current_cdm_531.death )\n) denominator\n;\n","CHECK_NAME":"plausibleDuringLife","CHECK_LEVEL":"FIELD","CHECK_DESCRIPTION":"If yes, the number and percent of records with a date value in the CONDITION_ERA_START_DATE field of the CONDITION_ERA table that occurs after death.","CDM_TABLE_NAME":"CONDITION_ERA","CDM_FIELD_NAME":"condition_era_start_date","SQL_FILE":"field_plausible_during_life.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Temporal","CONTEXT":"Verification","checkId":1352,"FAILED":0,"THRESHOLD_VALUE":1,"_row":"17.28"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.878660 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212226\nunitConceptId =     8713\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212226\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212226\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212226 (BILIRUBIN; TOTAL) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212226","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1353,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.1"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.779537 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212226\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212226\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212226\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212226 (BILIRUBIN; TOTAL) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212226","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1354,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.2"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.708864 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212227\nunitConceptId =     8713\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212227\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212227\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212227 (BILIRUBIN; DIRECT) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212227","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1355,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.3"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.669064 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212227\nunitConceptId =     8736\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212227\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212227\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212227 (BILIRUBIN; DIRECT) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212227","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1356,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.4"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.903782 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212227\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212227\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212227\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212227 (BILIRUBIN; DIRECT) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212227","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1357,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.5"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.486902 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212227\nunitConceptId =     8837\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212227\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212227\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212227 (BILIRUBIN; DIRECT) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212227","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1358,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.6"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.087725 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212227\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212227\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212227\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212227 (BILIRUBIN; DIRECT) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212227","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1359,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.7"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.817409 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212227\nunitConceptId =     8842\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212227\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212227\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212227 (BILIRUBIN; DIRECT) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212227","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1360,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.8"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803076 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212227\nunitConceptId =     9557\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212227\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212227\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212227 (BILIRUBIN; DIRECT) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212227","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1361,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.9"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.484261 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212241\nunitConceptId =     8713\nplausibleValueLow =      3.400\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212241\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      3.400\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212241\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212241 (CALCIUM; TOTAL) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      3.400.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212241","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1362,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.10"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.035705 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212241\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212241\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212241\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212241 (CALCIUM; TOTAL) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212241","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1363,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.11"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.417988 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212241\nunitConceptId =     8840\nplausibleValueLow =      7.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212241\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      7.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212241\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212241 (CALCIUM; TOTAL) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      7.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212241","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1364,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.12"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.936392 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212241\nunitConceptId =     8845\nplausibleValueLow =      1.200\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212241\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.200\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212241\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212241 (CALCIUM; TOTAL) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value less than      1.200.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212241","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1365,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.13"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.817815 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212241\nunitConceptId =     8861\nplausibleValueLow =      7.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212241\n\t\tand m.unit_concept_id =     8861\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      7.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212241\n\tand unit_concept_id =     8861\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212241 (CALCIUM; TOTAL) and UNIT_CONCEPT_ID     8861 (MILLIGRAM PER MILLILITER), the number and percent of records that have a value less than      7.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212241","UNIT_CONCEPT_ID":"    8861","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1366,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.14"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.266910 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212250\nunitConceptId =     8753\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212250\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212250\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212250 (CARBON DIOXIDE (BICARBONATE)) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212250","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1367,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.15"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.703467 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212250\nunitConceptId =     9557\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212250\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212250\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212250 (CARBON DIOXIDE (BICARBONATE)) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212250","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1368,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.16"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.734201 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212263\nunitConceptId =     8753\nplausibleValueLow =     90.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212263\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     90.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212263\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212263 (CHLORIDE; BLOOD) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than     90.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212263","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1369,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.17"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.170841 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212263\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212263\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212263\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212263 (CHLORIDE; BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212263","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1370,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.18"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.416707 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212263\nunitConceptId =     9557\nplausibleValueLow =     95.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212263\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     95.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212263\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212263 (CHLORIDE; BLOOD) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than     95.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212263","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1371,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.19"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.673449 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212285\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212285\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212285\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212285 (CREATINE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212285","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1372,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.20"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.787705 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212290\nunitConceptId =     8713\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212290\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212290\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212290 (CREATINE KINASE (CK), (CPK); TOTAL) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212290","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1373,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.21"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.656951 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212290\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212290\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212290\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212290 (CREATINE KINASE (CK), (CPK); TOTAL) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212290","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1374,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.22"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.635668 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212290\nunitConceptId =     8817\nplausibleValueLow =      1.580\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212290\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.580\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212290\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212290 (CREATINE KINASE (CK), (CPK); TOTAL) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value less than      1.580.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212290","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1375,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.23"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.851582 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212290\nunitConceptId =     8837\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212290\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212290\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212290 (CREATINE KINASE (CK), (CPK); TOTAL) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212290","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1376,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.24"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.833382 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212290\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212290\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212290\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212290 (CREATINE KINASE (CK), (CPK); TOTAL) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212290","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1377,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.25"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.773366 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212290\nunitConceptId =     8842\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212290\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212290\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212290 (CREATINE KINASE (CK), (CPK); TOTAL) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212290","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1378,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.26"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.787804 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212290\nunitConceptId =     8848\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212290\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212290\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212290 (CREATINE KINASE (CK), (CPK); TOTAL) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212290","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1379,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.27"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.734436 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212290\nunitConceptId =     9557\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212290\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212290\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212290 (CREATINE KINASE (CK), (CPK); TOTAL) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212290","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1380,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.28"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.804481 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212333\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212333\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212333\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212333 (FERRITIN) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212333","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1381,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.29"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.850950 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212333\nunitConceptId =     8583\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212333\n\t\tand m.unit_concept_id =     8583\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212333\n\tand unit_concept_id =     8583\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212333 (FERRITIN) and UNIT_CONCEPT_ID     8583 (FEMTOLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212333","UNIT_CONCEPT_ID":"    8583","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1382,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.30"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.571454 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212333\nunitConceptId =     8713\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212333\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212333\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212333 (FERRITIN) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212333","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1383,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.31"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.801090 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212333\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212333\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212333\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212333 (FERRITIN) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212333","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1384,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.32"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.811236 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212333\nunitConceptId =     8842\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212333\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212333\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212333 (FERRITIN) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212333","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1385,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.33"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.687655 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212333\nunitConceptId =     8848\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212333\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212333\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212333 (FERRITIN) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212333","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1386,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.34"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.919298 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212392\nunitConceptId =     8554\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212392\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212392\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212392 (HEMOGLOBIN; GLYCOSYLATED (A1C)) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212392","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1387,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.35"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.734230 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212392\nunitConceptId =     8564\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212392\n\t\tand m.unit_concept_id =     8564\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212392\n\tand unit_concept_id =     8564\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212392 (HEMOGLOBIN; GLYCOSYLATED (A1C)) and UNIT_CONCEPT_ID     8564 (PICOGRAM), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212392","UNIT_CONCEPT_ID":"    8564","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1388,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.36"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.687984 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212392\nunitConceptId =     8736\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212392\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212392\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212392 (HEMOGLOBIN; GLYCOSYLATED (A1C)) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212392","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1389,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.37"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.851082 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212392\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212392\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212392\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212392 (HEMOGLOBIN; GLYCOSYLATED (A1C)) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212392","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1390,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.38"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.735355 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212392\nunitConceptId =     8845\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212392\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212392\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212392 (HEMOGLOBIN; GLYCOSYLATED (A1C)) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212392","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1391,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.39"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.939998 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212421\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212421\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212421\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212421 (IRON) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212421","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1392,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.40"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819020 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212421\nunitConceptId =     8837\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212421\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212421\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212421 (IRON) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212421","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1393,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.41"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.402565 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212421\nunitConceptId =     8842\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212421\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212421\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212421 (IRON) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212421","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1394,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.42"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.905403 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212427\nunitConceptId =     8753\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212427\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212427\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212427 (LACTATE (LACTIC ACID)) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212427","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1395,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.43"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.872102 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212441\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212441\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212441\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212441 (LIPASE) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212441","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1396,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.44"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.771527 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212449\nunitConceptId =     8840\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212449\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212449\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212449 (LIPOPROTEIN, DIRECT MEASUREMENT; HIGH DENSITY CHOLESTEROL (HDL CHOLESTEROL)) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212449","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1397,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.45"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.703472 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212451\nunitConceptId =     8840\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212451\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212451\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212451 (LIPOPROTEIN, DIRECT MEASUREMENT; LDL CHOLESTEROL) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212451","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1398,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.46"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.672232 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212451\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212451\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212451\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212451 (LIPOPROTEIN, DIRECT MEASUREMENT; LDL CHOLESTEROL) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212451","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1399,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.47"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.702711 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212453\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212453\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212453\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212453 (MAGNESIUM) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212453","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1400,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.48"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.874682 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212453\nunitConceptId =     8736\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212453\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212453\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212453 (MAGNESIUM) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212453","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1401,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.49"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.470763 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212453\nunitConceptId =     8753\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212453\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212453\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212453 (MAGNESIUM) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212453","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1402,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.50"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.655822 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212453\nunitConceptId =     8837\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212453\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212453\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212453 (MAGNESIUM) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212453","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1403,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.51"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.903773 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212453\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212453\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212453\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212453 (MAGNESIUM) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212453","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1404,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.52"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.687948 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212453\nunitConceptId =     9557\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212453\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212453\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212453 (MAGNESIUM) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212453","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1405,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.53"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.732989 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212517\nunitConceptId =     8713\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212517\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212517\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212517 (PHOSPHATASE, ALKALINE) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212517","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1406,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.54"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.856010 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212517\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212517\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212517\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212517 (PHOSPHATASE, ALKALINE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212517","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1407,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.55"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.434143 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212523\nunitConceptId =     8713\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212523\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212523\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212523 (PHOSPHORUS INORGANIC (PHOSPHATE)) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212523","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1408,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.56"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.931618 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212523\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212523\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212523\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212523 (PHOSPHORUS INORGANIC (PHOSPHATE)) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212523","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1409,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.57"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.919078 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212523\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212523\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212523\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212523 (PHOSPHORUS INORGANIC (PHOSPHATE)) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212523","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1410,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.58"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.864631 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212531\nunitConceptId =     8753\nplausibleValueLow =      3.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212531\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      3.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212531\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212531 (POTASSIUM; SERUM, PLASMA OR WHOLE BLOOD) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      3.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212531","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1411,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.59"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.204469 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212531\nunitConceptId =     9557\nplausibleValueLow =      3.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212531\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      3.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212531\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212531 (POTASSIUM; SERUM, PLASMA OR WHOLE BLOOD) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than      3.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212531","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1412,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.60"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.866758 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212539\nunitConceptId =     8842\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212539\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212539\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212539 (PROLACTIN) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212539","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1413,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.61"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.411253 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212542\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212542\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212542\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212542 (PROSTATE SPECIFIC ANTIGEN (PSA); TOTAL) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212542","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1414,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.62"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.603584 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212542\nunitConceptId =     8842\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212542\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212542\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212542 (PROSTATE SPECIFIC ANTIGEN (PSA); TOTAL) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212542","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1415,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.63"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.468978 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212585\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212585\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212585\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212585 (TESTOSTERONE; TOTAL) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212585","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1416,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.64"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.817599 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212585\nunitConceptId =     8817\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212585\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212585\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212585 (TESTOSTERONE; TOTAL) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212585","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1417,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.65"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.003290 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212593\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212593\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212593\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212593 (THYROID STIMULATING HORMONE (TSH)) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212593","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1418,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.66"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.540311 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212600\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212600\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212600\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212600 (TRIGLYCERIDES) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212600","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1419,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.67"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.759241 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212600\nunitConceptId =     8840\nplausibleValueLow =     40.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212600\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     40.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212600\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212600 (TRIGLYCERIDES) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     40.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212600","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1420,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.68"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.465918 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212643\nunitConceptId =     8713\nplausibleValueLow =      3.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212643\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      3.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212643\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212643 (BLOOD COUNT; HEMOGLOBIN (HGB)) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      3.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212643","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1421,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.69"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.665074 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212643\nunitConceptId =     8837\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212643\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212643\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212643 (BLOOD COUNT; HEMOGLOBIN (HGB)) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212643","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1422,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.70"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.319191 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212643\nunitConceptId =     8840\nplausibleValueLow =      3.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212643\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      3.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212643\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212643 (BLOOD COUNT; HEMOGLOBIN (HGB)) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      3.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212643","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1423,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.71"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803887 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212742\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212742\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212742\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212742 (THROMBOPLASTIN TIME, PARTIAL (PTT); PLASMA OR WHOLE BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212742","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1424,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.72"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.549320 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000034\nunitConceptId =     8723\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000034\n\t\tand m.unit_concept_id =     8723\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000034\n\tand unit_concept_id =     8723\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000034 (MICROALBUMIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8723 (MILLIGRAM PER GRAM), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000034","UNIT_CONCEPT_ID":"    8723","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1425,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.73"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.519630 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000034\nunitConceptId =     8751\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000034\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000034\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000034 (MICROALBUMIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000034","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1426,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.74"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.948847 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000034\nunitConceptId =     8837\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000034\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000034\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000034 (MICROALBUMIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000034","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1427,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.75"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.802836 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000034\nunitConceptId =     8838\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000034\n\t\tand m.unit_concept_id =     8838\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000034\n\tand unit_concept_id =     8838\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000034 (MICROALBUMIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8838 (MICROGRAM PER MILLIGRAM), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000034","UNIT_CONCEPT_ID":"    8838","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1428,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.76"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.857995 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000034\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000034\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000034\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000034 (MICROALBUMIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000034","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1429,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.77"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.864925 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000034\nunitConceptId =     8859\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000034\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000034\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000034 (MICROALBUMIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000034","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1430,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.78"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.004164 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000185\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000185\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000185\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000185 (IRON SATURATION [MASS FRACTION] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000185","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1431,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.79"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":518,"EXECUTION_TIME":"1.618467 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000483\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000483\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000483\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000483 (GLUCOSE [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000483","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1432,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.80"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.797463 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000551\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000551\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000551\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000551 (THYROXINE (T4) FREE INDEX IN SERUM OR PLASMA BY CALCULATION) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000551","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1433,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.81"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.580940 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000593\nunitConceptId =     8725\nplausibleValueLow =    302.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000593\n\t\tand m.unit_concept_id =     8725\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    302.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000593\n\tand unit_concept_id =     8725\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000593 (COBALAMIN (VITAMIN B12) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8725 (NANOGRAM PER LITER), the number and percent of records that have a value less than    302.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000593","UNIT_CONCEPT_ID":"    8725","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1434,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.82"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.802835 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000593\nunitConceptId =     8729\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000593\n\t\tand m.unit_concept_id =     8729\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000593\n\tand unit_concept_id =     8729\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000593 (COBALAMIN (VITAMIN B12) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8729 (PICOMOLE PER LITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000593","UNIT_CONCEPT_ID":"    8729","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1435,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.83"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.735018 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000593\nunitConceptId =     8736\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000593\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000593\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000593 (COBALAMIN (VITAMIN B12) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000593","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1436,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.84"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.518243 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000593\nunitConceptId =     8845\nplausibleValueLow =    278.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000593\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    278.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000593\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000593 (COBALAMIN (VITAMIN B12) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value less than    278.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000593","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1437,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.85"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.751657 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000620\nunitConceptId =     8636\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000620\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000620\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000620 (COMPLEMENT C3 [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000620","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1438,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.86"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.632391 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000620\nunitConceptId =     8751\nplausibleValueLow =    560.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000620\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    560.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000620\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000620 (COMPLEMENT C3 [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than    560.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000620","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1439,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.87"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.549758 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000620\nunitConceptId =     8840\nplausibleValueLow =     30.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000620\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     30.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000620\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000620 (COMPLEMENT C3 [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     30.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000620","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1440,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.88"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.471368 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId =     8510\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id =     8510\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id =     8510\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8510 (UNIT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"    8510","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1441,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.89"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.722577 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1442,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.90"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.859939 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId =     8647\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1443,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.91"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.919400 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId =     8686\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id =     8686\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id =     8686\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8686 (CUBIC MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"    8686","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1444,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.92"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.787508 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId =     8816\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id =     8816\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id =     8816\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8816 (MILLION PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"    8816","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1445,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.93"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.123383 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1446,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.94"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":32,"EXECUTION_TIME":"2.050060 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId =     8848\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1447,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.95"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.687108 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId =     8961\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1448,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.96"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.655520 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId =     9436\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id =     9436\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id =     9436\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9436 (THOUSAND PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"    9436","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1449,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.97"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.155082 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId = 44777596\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id = 44777596\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id = 44777596\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID 44777596 (GRAM OF CREATININE), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"44777596","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1450,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.98"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.782984 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId = 44777602\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id = 44777602\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id = 44777602\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID 44777602 (KILOPASCAL), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"44777602","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1451,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.99"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.116620 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1452,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.100"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.771356 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8564\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8564\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8564\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8564 (PICOGRAM), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8564","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1453,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.101"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.709685 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8576\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8576\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8576\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8576 (MILLIGRAM), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8576","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1454,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.102"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.365902 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8582\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8582\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8582\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8582 (CENTIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8582","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1455,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.103"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.887902 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8583\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8583\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8583\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8583 (FEMTOLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8583","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1456,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.104"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.802705 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8587\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8587\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8587\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8587 (MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8587","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1457,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.105"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.588964 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8636\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1458,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.106"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":284,"EXECUTION_TIME":"1.783244 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8713\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1459,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.107"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.041980 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8739\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8739\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8739\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8739 (POUND (US)), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8739","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1460,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.108"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.744341 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8753\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1461,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.109"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.384935 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8837\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1462,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.110"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.437154 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     9245\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     9245\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     9245\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9245 (PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    9245","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1463,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.111"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.742318 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     9373\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     9373\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     9373\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9373 (OUNCE (AVOIRDUPOIS)), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    9373","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1464,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.112"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.855170 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     9384\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     9384\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     9384\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9384 (POINT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    9384","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1465,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.113"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.687597 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     9529\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     9529\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     9529\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9529 (KILOGRAM), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    9529","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1466,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.114"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.905027 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     9546\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     9546\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     9546\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9546 (METER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    9546","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1467,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.115"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.820128 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     9562\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     9562\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     9562\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9562 (MILLIGRAM PER KILOGRAM), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    9562","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1468,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.116"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.934394 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001122\nunitConceptId =     8510\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001122\n\t\tand m.unit_concept_id =     8510\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001122\n\tand unit_concept_id =     8510\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001122 (FERRITIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8510 (UNIT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001122","UNIT_CONCEPT_ID":"    8510","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1469,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.117"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.772744 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001122\nunitConceptId =     8748\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001122\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001122\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001122 (FERRITIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001122","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1470,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.118"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.804639 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001122\nunitConceptId =     8842\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001122\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001122\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001122 (FERRITIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001122","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1471,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.119"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.834263 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001247\nunitConceptId =     8848\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001247\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001247\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001247 (COMMON RAGWEED IGE AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001247","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1472,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.120"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.288382 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001308\nunitConceptId =     8753\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001308\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001308\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001308 (CHOLESTEROL IN LDL [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001308","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1473,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.121"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.603457 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001308\nunitConceptId =     8736\nplausibleValueLow =     19.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001308\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     19.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001308\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001308 (CHOLESTEROL IN LDL [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value less than     19.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001308","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1474,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.122"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803126 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001318\nunitConceptId =     8554\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001318\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001318\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001318 (CHOLESTEROL.TOTAL/CHOLESTEROL IN HDL [PERCENTILE]) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001318","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1475,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.123"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.716279 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001420\nunitConceptId =     8753\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001420\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001420\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001420 (MAGNESIUM [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001420","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1476,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.124"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.966766 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001420\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001420\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001420\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001420 (MAGNESIUM [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001420","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1477,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.125"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.784249 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001420\nunitConceptId =     9557\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001420\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001420\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001420 (MAGNESIUM [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001420","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1478,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.126"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.787031 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001604\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001604\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001604\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001604 (MONOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001604","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1479,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.127"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.664893 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001604\nunitConceptId =     8848\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001604\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001604\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001604 (MONOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001604","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1480,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.128"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.804339 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001784\nunitConceptId =     8554\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001784\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001784\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001784 (PROSTATE SPECIFIC AG FREE/PROSTATE SPECIFIC AG.TOTAL IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001784","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1481,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.129"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.519037 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001802\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001802\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001802\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001802 (MICROALBUMIN/CREATININE [MASS RATIO] IN URINE) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001802","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1482,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.130"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.403651 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001802\nunitConceptId =     8723\nplausibleValueLow =      0.001\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001802\n\t\tand m.unit_concept_id =     8723\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.001\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001802\n\tand unit_concept_id =     8723\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001802 (MICROALBUMIN/CREATININE [MASS RATIO] IN URINE) and UNIT_CONCEPT_ID     8723 (MILLIGRAM PER GRAM), the number and percent of records that have a value less than      0.001.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001802","UNIT_CONCEPT_ID":"    8723","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1483,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.131"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.449818 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001802\nunitConceptId =     8838\nplausibleValueLow =      0.001\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001802\n\t\tand m.unit_concept_id =     8838\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.001\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001802\n\tand unit_concept_id =     8838\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001802 (MICROALBUMIN/CREATININE [MASS RATIO] IN URINE) and UNIT_CONCEPT_ID     8838 (MICROGRAM PER MILLIGRAM), the number and percent of records that have a value less than      0.001.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001802","UNIT_CONCEPT_ID":"    8838","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1484,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.132"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.418686 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001802\nunitConceptId =     9017\nplausibleValueLow =      0.001\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001802\n\t\tand m.unit_concept_id =     9017\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.001\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001802\n\tand unit_concept_id =     9017\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001802 (MICROALBUMIN/CREATININE [MASS RATIO] IN URINE) and UNIT_CONCEPT_ID     9017 (MILLIGRAM PER GRAM OF CREATININE), the number and percent of records that have a value less than      0.001.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001802","UNIT_CONCEPT_ID":"    9017","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1485,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.133"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.681135 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002009\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002009\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002009\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002009 (GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA --12 HOURS FASTING) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002009","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1486,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.134"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.709539 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002030\nunitConceptId =     8519\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002030\n\t\tand m.unit_concept_id =     8519\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002030\n\tand unit_concept_id =     8519\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002030 (LYMPHOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8519 (LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002030","UNIT_CONCEPT_ID":"    8519","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1487,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.135"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":32,"EXECUTION_TIME":"1.882936 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002030\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002030\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002030\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002030 (LYMPHOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002030","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1488,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.136"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.106118 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002030\nunitConceptId =     8583\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002030\n\t\tand m.unit_concept_id =     8583\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002030\n\tand unit_concept_id =     8583\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002030 (LYMPHOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8583 (FEMTOLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002030","UNIT_CONCEPT_ID":"    8583","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1489,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.137"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.721374 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002030\nunitConceptId =     8647\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002030\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002030\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002030 (LYMPHOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002030","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1490,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.138"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.787868 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002030\nunitConceptId =     8686\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002030\n\t\tand m.unit_concept_id =     8686\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002030\n\tand unit_concept_id =     8686\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002030 (LYMPHOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8686 (CUBIC MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002030","UNIT_CONCEPT_ID":"    8686","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1491,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.139"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.825299 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002030\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002030\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002030\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002030 (LYMPHOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002030","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1492,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.140"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.866253 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002030\nunitConceptId =     9234\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002030\n\t\tand m.unit_concept_id =     9234\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002030\n\tand unit_concept_id =     9234\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002030 (LYMPHOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     9234 (VOLUME PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002030","UNIT_CONCEPT_ID":"    9234","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1493,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.141"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.518455 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002030\nunitConceptId =     9665\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002030\n\t\tand m.unit_concept_id =     9665\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002030\n\tand unit_concept_id =     9665\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002030 (LYMPHOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     9665 (MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002030","UNIT_CONCEPT_ID":"    9665","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1494,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.142"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.490269 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002091\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002091\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002091\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002091 (CHORIOGONADOTROPIN [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002091","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1495,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.143"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.857160 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002109\nunitConceptId =     8523\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002109\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002109\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002109 (CHOLESTEROL IN LDL/CHOLESTEROL IN HDL [MASS RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002109","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1496,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.144"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.503063 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002112\nunitConceptId =     8554\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002112\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002112\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002112 (FOLATE [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002112","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1497,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.145"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.639786 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002112\nunitConceptId =     8842\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002112\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002112\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002112 (FOLATE [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002112","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1498,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.146"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.733699 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002131\nunitConceptId =     8842\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002131\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002131\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002131 (PROSTATE SPECIFIC AG [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002131","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1499,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.147"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.704612 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002400\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002400\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002400\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002400 (IRON [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002400","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1500,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.148"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.518886 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002400\nunitConceptId =     8749\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002400\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002400\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002400 (IRON [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002400","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1501,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.149"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.689245 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002400\nunitConceptId =     8837\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002400\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002400\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002400 (IRON [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002400","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1502,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.150"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.303379 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002417\nunitConceptId =     8555\nplausibleValueLow =      3.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002417\n\t\tand m.unit_concept_id =     8555\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      3.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002417\n\tand unit_concept_id =     8555\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002417 (PROTHROMBIN TIME (PT) IN BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8555 (SECOND), the number and percent of records that have a value less than      3.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002417","UNIT_CONCEPT_ID":"    8555","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1503,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.151"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.503279 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002417\nunitConceptId =     9212\nplausibleValueLow =      3.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002417\n\t\tand m.unit_concept_id =     9212\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      3.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002417\n\tand unit_concept_id =     9212\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002417 (PROTHROMBIN TIME (PT) IN BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     9212 (SECOND), the number and percent of records that have a value less than      3.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002417","UNIT_CONCEPT_ID":"    9212","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1504,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.152"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.888403 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002617\nunitConceptId =     8751\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002617\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002617\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002617 (ACETAMINOPHEN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002617","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1505,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.153"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.879564 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002617\nunitConceptId =     8842\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002617\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002617\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002617 (ACETAMINOPHEN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002617","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1506,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.154"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.655104 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002617\nunitConceptId =     8859\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002617\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002617\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002617 (ACETAMINOPHEN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002617","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1507,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.155"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.734629 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002809\nunitConceptId =     8554\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002809\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002809\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002809 (RETICULOCYTES/100 ERYTHROCYTES IN BLOOD BY MANUAL) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002809","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1508,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.156"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.766378 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002971\nunitConceptId =     8525\nplausibleValueLow =     40.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002971\n\t\tand m.unit_concept_id =     8525\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     40.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002971\n\tand unit_concept_id =     8525\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002971 (NUCLEAR AB [TITER] IN SERUM BY IMMUNOFLUORESCENCE) and UNIT_CONCEPT_ID     8525 (TITER), the number and percent of records that have a value less than     40.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002971","UNIT_CONCEPT_ID":"    8525","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1509,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.157"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.073392 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003215\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003215\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003215\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003215 (LYMPHOCYTES [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003215","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1510,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.158"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.188747 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003215\nunitConceptId =     8647\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003215\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003215\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003215 (LYMPHOCYTES [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003215","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1511,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.159"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.850327 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003215\nunitConceptId =     8848\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003215\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003215\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003215 (LYMPHOCYTES [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003215","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1512,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.160"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.903291 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003282\nunitConceptId =     8848\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003282\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003282\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003282 (LEUKOCYTES [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003282","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1513,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.161"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.734516 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003338\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003338\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003338\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003338 (MCHC [MASS/VOLUME]) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003338","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1514,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.162"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.732781 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003338\nunitConceptId =     8713\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003338\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003338\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003338 (MCHC [MASS/VOLUME]) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003338","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1515,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.163"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.533773 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003458\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003458\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003458\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003458 (PHOSPHATE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003458","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1516,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.164"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.304374 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003458\nunitConceptId =     8840\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003458\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003458\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003458 (PHOSPHATE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003458","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1517,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.165"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.104956 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003624\nunitConceptId =     8840\nplausibleValueLow =     20.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003624\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     20.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003624\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003624 (LIPIDS [MASS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     20.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003624","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1518,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.166"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.734633 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003785\nunitConceptId =     8510\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003785\n\t\tand m.unit_concept_id =     8510\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003785\n\tand unit_concept_id =     8510\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003785 (CARCINOEMBRYONIC AG [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8510 (UNIT), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003785","UNIT_CONCEPT_ID":"    8510","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1519,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.167"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.255409 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003785\nunitConceptId =     8748\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003785\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003785\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003785 (CARCINOEMBRYONIC AG [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003785","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1520,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.168"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.535073 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003785\nunitConceptId =     8842\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003785\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003785\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003785 (CARCINOEMBRYONIC AG [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003785","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1521,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.169"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.477836 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004077\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004077\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004077\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004077 (GLUCOSE [MASS/VOLUME] IN CAPILLARY BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004077","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1522,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.170"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.927947 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004239\nunitConceptId =     8795\nplausibleValueLow =     47.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004239\n\t\tand m.unit_concept_id =     8795\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     47.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004239\n\tand unit_concept_id =     8795\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004239 (CREATININE [MASS/TIME] IN 24 HOUR URINE) and UNIT_CONCEPT_ID     8795 (MILLILITER PER MINUTE), the number and percent of records that have a value less than     47.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004239","UNIT_CONCEPT_ID":"    8795","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1523,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.171"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.755034 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004239\nunitConceptId =     8807\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004239\n\t\tand m.unit_concept_id =     8807\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004239\n\tand unit_concept_id =     8807\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004239 (CREATININE [MASS/TIME] IN 24 HOUR URINE) and UNIT_CONCEPT_ID     8807 (GRAM PER 24 HOURS), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004239","UNIT_CONCEPT_ID":"    8807","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1524,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.172"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.517192 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004239\nunitConceptId =     8909\nplausibleValueLow =    100.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004239\n\t\tand m.unit_concept_id =     8909\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    100.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004239\n\tand unit_concept_id =     8909\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004239 (CREATININE [MASS/TIME] IN 24 HOUR URINE) and UNIT_CONCEPT_ID     8909 (MILLIGRAM PER 24 HOURS), the number and percent of records that have a value less than    100.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004239","UNIT_CONCEPT_ID":"    8909","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1525,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.173"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.940121 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004248\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004248\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004248\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004248 (SEX HORMONE BINDING GLOBULIN [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004248","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1526,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.174"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.702934 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004248\nunitConceptId =     8736\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004248\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004248\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004248 (SEX HORMONE BINDING GLOBULIN [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004248","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1527,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.175"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18032,"EXECUTION_TIME":"1.687671 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004249\nunitConceptId =     8876\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004249\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004249\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004249 (SYSTOLIC BLOOD PRESSURE) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004249","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1528,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.176"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.049236 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004295\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004295\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004295\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004295 (UREA NITROGEN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004295","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1529,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.177"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.719932 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004327\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004327\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004327\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004327 (LYMPHOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004327","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1530,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.178"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.701728 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004327\nunitConceptId =     8647\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004327\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004327\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004327 (LYMPHOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004327","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1531,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.179"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819350 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004327\nunitConceptId =     8816\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004327\n\t\tand m.unit_concept_id =     8816\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004327\n\tand unit_concept_id =     8816\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004327 (LYMPHOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8816 (MILLION PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004327","UNIT_CONCEPT_ID":"    8816","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1532,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.180"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.849911 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004327\nunitConceptId =     8848\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004327\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004327\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004327 (LYMPHOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004327","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1533,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.181"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.718899 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004327\nunitConceptId =     8961\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004327\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004327\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004327 (LYMPHOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004327","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1534,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.182"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.687427 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004327\nunitConceptId =     9436\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004327\n\t\tand m.unit_concept_id =     9436\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004327\n\tand unit_concept_id =     9436\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004327 (LYMPHOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9436 (THOUSAND PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004327","UNIT_CONCEPT_ID":"    9436","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1535,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.183"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.754824 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004410\nunitConceptId =     8554\nplausibleValueLow =      4.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004410\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      4.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004410\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004410 (HEMOGLOBIN A1C/HEMOGLOBIN.TOTAL IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      4.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004410","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1536,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.184"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.938834 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004410\nunitConceptId =     9579\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004410\n\t\tand m.unit_concept_id =     9579\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004410\n\tand unit_concept_id =     9579\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004410 (HEMOGLOBIN A1C/HEMOGLOBIN.TOTAL IN BLOOD) and UNIT_CONCEPT_ID     9579 (MILLIMOLE PER MOLE), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004410","UNIT_CONCEPT_ID":"    9579","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1537,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.185"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.673207 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004722\nunitConceptId =     8842\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004722\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004722\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004722 (PROLACTIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004722","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1538,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.186"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819352 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004789\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004789\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004789\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004789 (TRANSFERRIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004789","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1539,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.187"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.649568 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004789\nunitConceptId =     8636\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004789\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004789\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004789 (TRANSFERRIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004789","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1540,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.188"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.635118 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004789\nunitConceptId =     8749\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004789\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004789\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004789 (TRANSFERRIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004789","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1541,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.189"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.632918 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004789\nunitConceptId =     8840\nplausibleValueLow =    100.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004789\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    100.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004789\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004789 (TRANSFERRIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than    100.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004789","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1542,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.190"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.704617 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004905\nunitConceptId =     8645\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004905\n\t\tand m.unit_concept_id =     8645\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004905\n\tand unit_concept_id =     8645\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004905 (LIPASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8645 (UNIT PER LITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004905","UNIT_CONCEPT_ID":"    8645","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1543,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.191"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":238,"EXECUTION_TIME":"1.876020 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004905\nunitConceptId =     8923\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004905\n\t\tand m.unit_concept_id =     8923\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004905\n\tand unit_concept_id =     8923\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004905 (LIPASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8923 (INTERNATIONAL UNIT PER LITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004905","UNIT_CONCEPT_ID":"    8923","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1544,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.192"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.962493 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005013\nunitConceptId =     8748\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005013\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005013\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005013 (PROSTATE SPECIFIC AG FREE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005013","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1545,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.193"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.687769 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005013\nunitConceptId =     8842\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005013\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005013\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005013 (PROSTATE SPECIFIC AG FREE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005013","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1546,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.194"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.503213 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005105\nunitConceptId =     8848\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005105\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005105\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005105 (BLASTS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005105","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1547,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.195"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.896191 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005168\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005168\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005168\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005168 (IRON BINDING CAPACITY.UNSATURATED [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005168","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1548,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.196"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.575615 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005168\nunitConceptId =     8837\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005168\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005168\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005168 (IRON BINDING CAPACITY.UNSATURATED [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005168","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1549,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.197"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.022029 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005424\nunitConceptId =     8617\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005424\n\t\tand m.unit_concept_id =     8617\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005424\n\tand unit_concept_id =     8617\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005424 (BODY SURFACE AREA) and UNIT_CONCEPT_ID     8617 (SQUARE METER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005424","UNIT_CONCEPT_ID":"    8617","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1550,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.198"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.003165 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005446\nunitConceptId =     8554\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005446\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005446\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005446 (HEMOGLOBIN A1/HEMOGLOBIN.TOTAL IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005446","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1551,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.199"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.770608 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005456\nunitConceptId =     8753\nplausibleValueLow =      3.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005456\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      3.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005456\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005456 (POTASSIUM [MOLES/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      3.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005456","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1552,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.200"},{"NUM_VIOLATED_ROWS":10,"PCT_VIOLATED_ROWS":0.0167,"NUM_DENOMINATOR_ROWS":598,"EXECUTION_TIME":"1.469157 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005456\nunitConceptId =     9557\nplausibleValueLow =      3.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005456\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      3.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005456\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005456 (POTASSIUM [MOLES/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than      3.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005456","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1553,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.201"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.887299 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005673\nunitConceptId =     8554\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005673\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005673\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005673 (HEMOGLOBIN A1C/HEMOGLOBIN.TOTAL IN BLOOD BY HPLC) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005673","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1554,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.202"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.739645 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005770\nunitConceptId =     8795\nplausibleValueLow =     26.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005770\n\t\tand m.unit_concept_id =     8795\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     26.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005770\n\tand unit_concept_id =     8795\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005770 (CREATININE RENAL CLEARANCE IN 24 HOUR) and UNIT_CONCEPT_ID     8795 (MILLILITER PER MINUTE), the number and percent of records that have a value less than     26.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005770","UNIT_CONCEPT_ID":"    8795","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1555,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.203"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.516449 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005770\nunitConceptId =     9117\nplausibleValueLow =     20.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005770\n\t\tand m.unit_concept_id =     9117\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     20.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005770\n\tand unit_concept_id =     9117\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005770 (CREATININE RENAL CLEARANCE IN 24 HOUR) and UNIT_CONCEPT_ID     9117 (MILLILITER PER MINUTE PER 1.73 SQUARE METER), the number and percent of records that have a value less than     20.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005770","UNIT_CONCEPT_ID":"    9117","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1556,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.204"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.570079 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005770\nunitConceptId = 44777614\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005770\n\t\tand m.unit_concept_id = 44777614\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005770\n\tand unit_concept_id = 44777614\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005770 (CREATININE RENAL CLEARANCE IN 24 HOUR) and UNIT_CONCEPT_ID 44777614 (MILLILITER PER SECOND), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005770","UNIT_CONCEPT_ID":"44777614","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1557,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.205"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.486878 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005785\nunitConceptId =     8842\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005785\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005785\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005785 (CREATINE KINASE.MB [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005785","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1558,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.206"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.405299 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006140\nunitConceptId =     8749\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006140\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006140\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006140 (BILIRUBIN.TOTAL [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006140","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1559,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.207"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.707024 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006140\nunitConceptId =     8840\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006140\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006140\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006140 (BILIRUBIN.TOTAL [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006140","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1560,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.208"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.010967 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006315\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006315\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006315\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006315 (BASOPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006315","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1561,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.209"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.617981 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006315\nunitConceptId =     8848\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006315\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006315\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006315 (BASOPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006315","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1562,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.210"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.488250 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006315\nunitConceptId =     8961\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006315\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006315\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006315 (BASOPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006315","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1563,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.211"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.773990 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006315\nunitConceptId =     9435\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006315\n\t\tand m.unit_concept_id =     9435\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006315\n\tand unit_concept_id =     9435\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006315 (BASOPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9435 (THOUSAND PER LITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006315","UNIT_CONCEPT_ID":"    9435","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1564,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.212"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.901466 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006504\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006504\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006504\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006504 (EOSINOPHILS/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006504","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1565,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.213"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.072522 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006504\nunitConceptId =     8647\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006504\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006504\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006504 (EOSINOPHILS/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006504","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1566,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.214"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.058341 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006504\nunitConceptId =     8686\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006504\n\t\tand m.unit_concept_id =     8686\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006504\n\tand unit_concept_id =     8686\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006504 (EOSINOPHILS/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8686 (CUBIC MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006504","UNIT_CONCEPT_ID":"    8686","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1567,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.215"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.889266 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006504\nunitConceptId =     9234\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006504\n\t\tand m.unit_concept_id =     9234\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006504\n\tand unit_concept_id =     9234\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006504 (EOSINOPHILS/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     9234 (VOLUME PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006504","UNIT_CONCEPT_ID":"    9234","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1568,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.216"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.750327 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006504\nunitConceptId =     9665\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006504\n\t\tand m.unit_concept_id =     9665\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006504\n\tand unit_concept_id =     9665\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006504 (EOSINOPHILS/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     9665 (MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006504","UNIT_CONCEPT_ID":"    9665","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1569,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.217"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.822193 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006576\nunitConceptId =     8753\nplausibleValueLow =     18.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006576\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     18.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006576\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006576 (BICARBONATE [MOLES/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than     18.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006576","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1570,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.218"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.769924 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006576\nunitConceptId =     9556\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006576\n\t\tand m.unit_concept_id =     9556\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006576\n\tand unit_concept_id =     9556\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006576 (BICARBONATE [MOLES/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9556 (MILLIEQUIVALENT PER KILOGRAM), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006576","UNIT_CONCEPT_ID":"    9556","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1571,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.219"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.687298 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006576\nunitConceptId =     9557\nplausibleValueLow =     17.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006576\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     17.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006576\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006576 (BICARBONATE [MOLES/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than     17.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006576","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1572,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.220"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.764778 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006717\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006717\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006717\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006717 (GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA --2 HOURS POST 100 G GLUCOSE PO) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006717","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1573,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.221"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.881605 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006734\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006734\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006734\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006734 (WHITE OAK IGE AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006734","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1574,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.222"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.850423 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006906\nunitConceptId =     8753\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006906\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006906\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006906 (CALCIUM [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006906","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1575,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.223"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.505203 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006906\nunitConceptId =     8840\nplausibleValueLow =      7.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006906\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      7.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006906\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006906 (CALCIUM [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      7.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006906","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1576,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.224"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.986847 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006906\nunitConceptId =     8845\nplausibleValueLow =      7.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006906\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      7.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006906\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006906 (CALCIUM [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value less than      7.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006906","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1577,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.225"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.739514 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006906\nunitConceptId =     8861\nplausibleValueLow =      7.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006906\n\t\tand m.unit_concept_id =     8861\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      7.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006906\n\tand unit_concept_id =     8861\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006906 (CALCIUM [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8861 (MILLIGRAM PER MILLILITER), the number and percent of records that have a value less than      7.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006906","UNIT_CONCEPT_ID":"    8861","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1578,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.226"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.749247 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006923\nunitConceptId =     8554\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006923\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006923\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006923 (ALANINE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006923","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1579,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.227"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.665257 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006923\nunitConceptId =     8645\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006923\n\t\tand m.unit_concept_id =     8645\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006923\n\tand unit_concept_id =     8645\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006923 (ALANINE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8645 (UNIT PER LITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006923","UNIT_CONCEPT_ID":"    8645","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1580,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.228"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.464853 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006923\nunitConceptId =     8713\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006923\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006923\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006923 (ALANINE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006923","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1581,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.229"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.903256 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006923\nunitConceptId =     8748\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006923\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006923\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006923 (ALANINE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006923","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1582,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.230"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.688583 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006923\nunitConceptId =     8753\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006923\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006923\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006923 (ALANINE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006923","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1583,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.231"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.604275 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006923\nunitConceptId =     8837\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006923\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006923\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006923 (ALANINE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006923","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1584,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.232"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.002455 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006923\nunitConceptId =     8840\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006923\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006923\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006923 (ALANINE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006923","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1585,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.233"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.660023 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006923\nunitConceptId =     8923\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006923\n\t\tand m.unit_concept_id =     8923\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006923\n\tand unit_concept_id =     8923\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006923 (ALANINE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8923 (INTERNATIONAL UNIT PER LITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006923","UNIT_CONCEPT_ID":"    8923","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1586,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.234"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.718771 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006923\nunitConceptId =     9648\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006923\n\t\tand m.unit_concept_id =     9648\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006923\n\tand unit_concept_id =     9648\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006923 (ALANINE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9648 (UNIFIED ATOMIC MASS UNIT), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006923","UNIT_CONCEPT_ID":"    9648","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1587,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.235"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.051074 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007070\nunitConceptId =     8713\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007070\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007070\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007070 (CHOLESTEROL IN HDL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007070","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1588,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.236"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.564736 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007070\nunitConceptId =     8749\nplausibleValueLow =     24.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007070\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     24.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007070\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007070 (CHOLESTEROL IN HDL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than     24.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007070","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1589,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.237"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.787884 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007070\nunitConceptId =     8840\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007070\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007070\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007070 (CHOLESTEROL IN HDL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007070","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1590,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.238"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.976662 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007070\nunitConceptId =     8753\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007070\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007070\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007070 (CHOLESTEROL IN HDL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007070","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1591,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.239"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.531042 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007150\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007150\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007150\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007150 (CREATINE KINASE.MB/CREATINE KINASE.TOTAL IN SERUM OR PLASMA BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007150","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1592,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.240"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.087057 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007150\nunitConceptId =     8842\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007150\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007150\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007150 (CREATINE KINASE.MB/CREATINE KINASE.TOTAL IN SERUM OR PLASMA BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007150","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1593,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.241"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.541516 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007220\nunitConceptId =     8645\nplausibleValueLow =      3.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007220\n\t\tand m.unit_concept_id =     8645\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      3.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007220\n\tand unit_concept_id =     8645\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007220 (CREATINE KINASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8645 (UNIT PER LITER), the number and percent of records that have a value less than      3.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007220","UNIT_CONCEPT_ID":"    8645","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1594,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.242"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.065809 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007220\nunitConceptId =     8842\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007220\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007220\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007220 (CREATINE KINASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007220","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1595,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.243"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.066750 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007220\nunitConceptId =     8923\nplausibleValueLow =     47.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007220\n\t\tand m.unit_concept_id =     8923\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     47.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007220\n\tand unit_concept_id =     8923\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007220 (CREATINE KINASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8923 (INTERNATIONAL UNIT PER LITER), the number and percent of records that have a value less than     47.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007220","UNIT_CONCEPT_ID":"    8923","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1596,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.244"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.903501 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007263\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007263\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007263\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007263 (HEMOGLOBIN A1C/HEMOGLOBIN.TOTAL IN BLOOD BY CALCULATION) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007263","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1597,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.245"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.917843 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007332\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007332\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007332\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007332 (GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA --1 HOUR POST 75 G GLUCOSE PO) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007332","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1598,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.246"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.202316 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007359\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007359\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007359\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007359 (BILIRUBIN.INDIRECT [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007359","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1599,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.247"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.020750 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007461\nunitConceptId =     8848\nplausibleValueLow =    100.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007461\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    100.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007461\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007461 (PLATELETS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than    100.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007461","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1600,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.248"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.987715 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3008295\nunitConceptId =     8605\nplausibleValueLow =    220.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3008295\n\t\tand m.unit_concept_id =     8605\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    220.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3008295\n\tand unit_concept_id =     8605\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3008295 (OSMOLALITY OF SERUM OR PLASMA) and UNIT_CONCEPT_ID     8605 (MILLIOSMOLE), the number and percent of records that have a value less than    220.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3008295","UNIT_CONCEPT_ID":"    8605","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1601,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.249"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":58,"EXECUTION_TIME":"2.204062 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3008295\nunitConceptId =     8862\nplausibleValueLow =    220.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3008295\n\t\tand m.unit_concept_id =     8862\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    220.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3008295\n\tand unit_concept_id =     8862\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3008295 (OSMOLALITY OF SERUM OR PLASMA) and UNIT_CONCEPT_ID     8862 (MILLIOSMOLE PER KILOGRAM), the number and percent of records that have a value less than    220.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3008295","UNIT_CONCEPT_ID":"    8862","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1602,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.250"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.886984 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3008295\nunitConceptId =     9577\nplausibleValueLow =    220.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3008295\n\t\tand m.unit_concept_id =     9577\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    220.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3008295\n\tand unit_concept_id =     9577\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3008295 (OSMOLALITY OF SERUM OR PLASMA) and UNIT_CONCEPT_ID     9577 (MILLIMOLE PER KILOGRAM), the number and percent of records that have a value less than    220.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3008295","UNIT_CONCEPT_ID":"    9577","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1603,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.251"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.771486 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3008295\nunitConceptId =     9591\nplausibleValueLow =    220.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3008295\n\t\tand m.unit_concept_id =     9591\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    220.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3008295\n\tand unit_concept_id =     9591\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3008295 (OSMOLALITY OF SERUM OR PLASMA) and UNIT_CONCEPT_ID     9591 (MILLIOSMOLE PER LITER), the number and percent of records that have a value less than    220.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3008295","UNIT_CONCEPT_ID":"    9591","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1604,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.252"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.667168 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3008342\nunitConceptId =     8554\nplausibleValueLow =     45.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3008342\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     45.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3008342\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3008342 (NEUTROPHILS/100 LEUKOCYTES IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than     45.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3008342","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1605,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.253"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819394 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3008598\nunitConceptId =     8817\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3008598\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3008598\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3008598 (THYROXINE (T4) FREE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3008598","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1606,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.254"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819102 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3008893\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3008893\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3008893\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3008893 (TESTOSTERONE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3008893","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1607,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.255"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.740927 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3008893\nunitConceptId =     8817\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3008893\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3008893\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3008893 (TESTOSTERONE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3008893","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1608,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.256"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.735591 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009041\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009041\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009041\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009041 (CARDIOLIPIN IGG AB [UNITS/VOLUME] IN SERUM BY IMMUNOASSAY) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009041","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1609,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.257"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.110080 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009041\nunitConceptId =     9100\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009041\n\t\tand m.unit_concept_id =     9100\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009041\n\tand unit_concept_id =     9100\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009041 (CARDIOLIPIN IGG AB [UNITS/VOLUME] IN SERUM BY IMMUNOASSAY) and UNIT_CONCEPT_ID     9100 (IGG PHOSPHOLIPID UNIT), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009041","UNIT_CONCEPT_ID":"    9100","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1610,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.258"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819107 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009201\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009201\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009201\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009201 (THYROTROPIN [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009201","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1611,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.259"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.075059 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009201\nunitConceptId =     8860\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009201\n\t\tand m.unit_concept_id =     8860\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009201\n\tand unit_concept_id =     8860\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009201 (THYROTROPIN [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8860 (MICROUNIT PER MILLILITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009201","UNIT_CONCEPT_ID":"    8860","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1612,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.260"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.620806 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009201\nunitConceptId =     9040\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009201\n\t\tand m.unit_concept_id =     9040\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009201\n\tand unit_concept_id =     9040\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009201 (THYROTROPIN [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9040 (MILLI-INTERNATIONAL UNIT PER LITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009201","UNIT_CONCEPT_ID":"    9040","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1613,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.261"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.865328 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009201\nunitConceptId = 44777578\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009201\n\t\tand m.unit_concept_id = 44777578\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009201\n\tand unit_concept_id = 44777578\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009201 (THYROTROPIN [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID 44777578 (MILLIUNIT PER LITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009201","UNIT_CONCEPT_ID":"44777578","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1614,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.262"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.019013 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009306\nunitConceptId =     8748\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009306\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009306\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009306 (ALPHA-1-FETOPROTEIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009306","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1615,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.263"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.904062 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009306\nunitConceptId =     8842\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009306\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009306\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009306 (ALPHA-1-FETOPROTEIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009306","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1616,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.264"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.090350 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8510\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8510\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8510\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8510 (UNIT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8510","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1617,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.265"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.554837 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8517\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8517\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8517\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8517 (FARAD), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8517","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1618,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.266"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.571622 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8519\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8519\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8519\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8519 (LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8519","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1619,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.267"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.734724 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8523\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1620,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.268"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":284,"EXECUTION_TIME":"1.703685 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8554\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1621,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.269"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.781524 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8576\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8576\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8576\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8576 (MILLIGRAM), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8576","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1622,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.270"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803607 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8582\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8582\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8582\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8582 (CENTIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8582","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1623,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.271"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.804841 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8583\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8583\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8583\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8583 (FEMTOLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8583","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1624,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.272"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.641711 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8587\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8587\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8587\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8587 (MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8587","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1625,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.273"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.688033 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8588\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8588\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8588\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8588 (MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8588","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1626,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.274"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803212 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8713\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1627,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.275"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.687918 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8739\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8739\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8739\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8739 (POUND (US)), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8739","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1628,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.276"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.718264 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1629,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.277"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.796100 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8961\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1630,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.278"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.965448 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     9234\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     9234\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     9234\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     9234 (VOLUME PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    9234","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1631,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.279"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.740643 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     9529\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     9529\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     9529\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     9529 (KILOGRAM), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    9529","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1632,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.280"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.734595 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     9546\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     9546\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     9546\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     9546 (METER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    9546","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1633,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.281"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.841362 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     9648\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     9648\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     9648\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     9648 (UNIFIED ATOMIC MASS UNIT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    9648","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1634,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.282"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.989005 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId = 44777604\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id = 44777604\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id = 44777604\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID 44777604 (LITER PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"44777604","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1635,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.283"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.664751 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009596\nunitConceptId =     8837\nplausibleValueLow =      6.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009596\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      6.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009596\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009596 (CHOLESTEROL IN VLDL [MASS/VOLUME] IN SERUM OR PLASMA BY CALCULATION) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value less than      6.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009596","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1636,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.284"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.797277 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009596\nunitConceptId =     8840\nplausibleValueLow =      6.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009596\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      6.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009596\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009596 (CHOLESTEROL IN VLDL [MASS/VOLUME] IN SERUM OR PLASMA BY CALCULATION) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      6.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009596","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1637,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.285"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.373684 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009682\nunitConceptId =     8736\nplausibleValueLow =      8.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009682\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      8.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009682\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009682 (CORTISOL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value less than      8.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009682","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1638,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.286"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.718258 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009682\nunitConceptId =     8837\nplausibleValueLow =      4.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009682\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      4.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009682\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009682 (CORTISOL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value less than      4.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009682","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1639,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.287"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.563551 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009744\nunitConceptId =     8554\nplausibleValueLow =     27.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009744\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     27.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009744\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009744 (MCHC [MASS/VOLUME] BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than     27.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009744","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1640,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.288"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.313340 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009744\nunitConceptId =     8564\nplausibleValueLow =     27.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009744\n\t\tand m.unit_concept_id =     8564\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     27.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009744\n\tand unit_concept_id =     8564\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009744 (MCHC [MASS/VOLUME] BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8564 (PICOGRAM), the number and percent of records that have a value less than     27.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009744","UNIT_CONCEPT_ID":"    8564","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1641,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.289"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.189085 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009744\nunitConceptId =     8636\nplausibleValueLow =     27.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009744\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     27.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009744\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009744 (MCHC [MASS/VOLUME] BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value less than     27.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009744","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1642,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.290"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.935203 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009744\nunitConceptId =     8713\nplausibleValueLow =     27.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009744\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     27.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009744\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009744 (MCHC [MASS/VOLUME] BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than     27.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009744","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1643,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.291"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.981294 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009797\nunitConceptId =     8554\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009797\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009797\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009797 (BASOPHILS/100 LEUKOCYTES IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009797","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1644,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.292"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.518699 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009932\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009932\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009932\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009932 (EOSINOPHILS [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009932","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1645,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.293"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.948732 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009932\nunitConceptId =     8647\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009932\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009932\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009932 (EOSINOPHILS [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009932","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1646,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.294"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.781141 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009932\nunitConceptId =     8848\nplausibleValueLow =      0.001\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009932\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.001\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009932\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009932 (EOSINOPHILS [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.001.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009932","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1647,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.295"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.886728 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009932\nunitConceptId =     8961\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009932\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009932\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009932 (EOSINOPHILS [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009932","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1648,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.296"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.834957 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009966\nunitConceptId =     8840\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009966\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009966\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009966 (CHOLESTEROL IN LDL [MASS/VOLUME] IN SERUM OR PLASMA BY DIRECT ASSAY) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009966","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1649,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.297"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.876958 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009966\nunitConceptId =     8736\nplausibleValueLow =    418.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009966\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    418.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009966\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009966 (CHOLESTEROL IN LDL [MASS/VOLUME] IN SERUM OR PLASMA BY DIRECT ASSAY) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value less than    418.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009966","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1650,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.298"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.872573 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010084\nunitConceptId =     8729\nplausibleValueLow =     50.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010084\n\t\tand m.unit_concept_id =     8729\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     50.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010084\n\tand unit_concept_id =     8729\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010084 (C REACTIVE PROTEIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8729 (PICOMOLE PER LITER), the number and percent of records that have a value less than     50.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010084","UNIT_CONCEPT_ID":"    8729","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1651,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.299"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.587706 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010084\nunitConceptId =     8842\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010084\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010084\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010084 (C PEPTIDE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010084","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1652,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.300"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819126 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010156\nunitConceptId =     8751\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010156\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010156\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010156 (C REACTIVE PROTEIN [MASS/VOLUME] IN SERUM OR PLASMA BY HIGH SENSITIVITY METHOD) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010156","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1653,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.301"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.833542 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010156\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010156\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010156\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010156 (C REACTIVE PROTEIN [MASS/VOLUME] IN SERUM OR PLASMA BY HIGH SENSITIVITY METHOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010156","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1654,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.302"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.085121 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010156\nunitConceptId =     8842\nplausibleValueLow =      9.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010156\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      9.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010156\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010156 (C REACTIVE PROTEIN [MASS/VOLUME] IN SERUM OR PLASMA BY HIGH SENSITIVITY METHOD) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      9.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010156","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1655,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.303"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.930024 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010340\nunitConceptId =     8817\nplausibleValueLow =     60.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010340\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     60.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010340\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010340 (TRIIODOTHYRONINE (T3) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value less than     60.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010340","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1656,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.304"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.701669 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010340\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010340\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010340\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010340 (TRIIODOTHYRONINE (T3) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010340","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1657,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.305"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.035747 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010340\nunitConceptId =     8842\nplausibleValueLow =     60.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010340\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     60.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010340\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010340 (TRIIODOTHYRONINE (T3) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than     60.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010340","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1658,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.306"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.487644 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010457\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010457\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010457\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010457 (EOSINOPHILS/100 LEUKOCYTES IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010457","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1659,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.307"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.724982 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010813\nunitConceptId =     8482\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010813\n\t\tand m.unit_concept_id =     8482\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010813\n\tand unit_concept_id =     8482\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010813 (LEUKOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8482 (PH), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010813","UNIT_CONCEPT_ID":"    8482","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1660,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.308"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.686676 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010813\nunitConceptId =     8519\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010813\n\t\tand m.unit_concept_id =     8519\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010813\n\tand unit_concept_id =     8519\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010813 (LEUKOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8519 (LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010813","UNIT_CONCEPT_ID":"    8519","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1661,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.309"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.987609 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010813\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010813\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010813\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010813 (LEUKOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010813","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1662,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.310"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.138005 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010813\nunitConceptId =     8576\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010813\n\t\tand m.unit_concept_id =     8576\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010813\n\tand unit_concept_id =     8576\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010813 (LEUKOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8576 (MILLIGRAM), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010813","UNIT_CONCEPT_ID":"    8576","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1663,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.311"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.743128 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010813\nunitConceptId =     8587\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010813\n\t\tand m.unit_concept_id =     8587\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010813\n\tand unit_concept_id =     8587\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010813 (LEUKOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8587 (MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010813","UNIT_CONCEPT_ID":"    8587","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1664,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.312"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.847548 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010813\nunitConceptId =     8647\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010813\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010813\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010813 (LEUKOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010813","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1665,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.313"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.687785 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010813\nunitConceptId =     8686\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010813\n\t\tand m.unit_concept_id =     8686\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010813\n\tand unit_concept_id =     8686\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010813 (LEUKOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8686 (CUBIC MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010813","UNIT_CONCEPT_ID":"    8686","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1666,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.314"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.987779 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010813\nunitConceptId =     8848\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010813\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010813\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010813 (LEUKOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010813","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1667,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.315"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.059722 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010813\nunitConceptId =     9665\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010813\n\t\tand m.unit_concept_id =     9665\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010813\n\tand unit_concept_id =     9665\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010813 (LEUKOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9665 (MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010813","UNIT_CONCEPT_ID":"    9665","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1668,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.316"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.919912 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010813\nunitConceptId = 45744812\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010813\n\t\tand m.unit_concept_id = 45744812\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010813\n\tand unit_concept_id = 45744812\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010813 (LEUKOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID 45744812 (CELLS), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010813","UNIT_CONCEPT_ID":"45744812","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1669,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.317"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.797139 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011099\nunitConceptId =     8736\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011099\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011099\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011099 (SEX HORMONE BINDING GLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011099","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1670,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.318"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.406216 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011163\nunitConceptId =     8554\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011163\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011163\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011163 (CHOLESTEROL.TOTAL/CHOLESTEROL IN HDL [MASS RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011163","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1671,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.319"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.304945 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011163\nunitConceptId =     8523\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011163\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011163\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011163 (CHOLESTEROL.TOTAL/CHOLESTEROL IN HDL [MASS RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011163","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1672,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.320"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.619519 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011335\nunitConceptId =     8736\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011335\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011335\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011335 (DIGOXIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011335","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1673,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.321"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.802695 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011335\nunitConceptId =     8748\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011335\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011335\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011335 (DIGOXIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011335","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1674,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.322"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.758484 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011335\nunitConceptId =     8817\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011335\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011335\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011335 (DIGOXIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011335","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1675,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.323"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.848351 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011335\nunitConceptId =     8842\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011335\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011335\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011335 (DIGOXIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011335","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1676,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.324"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.763800 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011337\nunitConceptId =     8817\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011337\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011337\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011337 (ALDOSTERONE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011337","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1677,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.325"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.750526 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011424\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011424\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011424\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011424 (GLUCOSE [MASS/VOLUME] IN BLOOD BY AUTOMATED TEST STRIP) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011424","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1678,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.326"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.773407 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011505\nunitConceptId =     8519\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011505\n\t\tand m.unit_concept_id =     8519\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011505\n\tand unit_concept_id =     8519\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011505 (FEV1/FVC) and UNIT_CONCEPT_ID     8519 (LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011505","UNIT_CONCEPT_ID":"    8519","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1679,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.327"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.570901 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011505\nunitConceptId =     8523\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011505\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011505\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011505 (FEV1/FVC) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011505","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1680,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.328"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.840589 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011505\nunitConceptId =     8554\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011505\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011505\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011505 (FEV1/FVC) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011505","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1681,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.329"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.988602 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011505\nunitConceptId =     9330\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011505\n\t\tand m.unit_concept_id =     9330\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011505\n\tand unit_concept_id =     9330\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011505 (FEV1/FVC) and UNIT_CONCEPT_ID     9330 (INCH (US)), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011505","UNIT_CONCEPT_ID":"    9330","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1682,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.330"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.973487 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011948\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011948\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011948\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011948 (MONOCYTES/100 LEUKOCYTES IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011948","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1683,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.331"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.764807 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011951\nunitConceptId =     8848\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011951\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011951\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011951 (ASPERGILLUS FUMIGATUS IGE AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011951","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1684,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.332"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.004309 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011960\nunitConceptId =     8845\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011960\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011960\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011960 (NATRIURETIC PEPTIDE B [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011960","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1685,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.333"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.897309 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012030\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012030\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012030\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012030 (MCH [ENTITIC MASS] BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012030","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1686,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.334"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.922231 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012030\nunitConceptId =     8564\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012030\n\t\tand m.unit_concept_id =     8564\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012030\n\tand unit_concept_id =     8564\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012030 (MCH [ENTITIC MASS] BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8564 (PICOGRAM), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012030","UNIT_CONCEPT_ID":"    8564","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1687,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.335"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.427719 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012095\nunitConceptId =     8753\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012095\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012095\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012095 (MAGNESIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012095","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1688,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.336"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.267091 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012095\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012095\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012095\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012095 (MAGNESIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012095","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1689,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.337"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.615249 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012095\nunitConceptId =     9557\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012095\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012095\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012095 (MAGNESIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012095","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1690,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.338"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.581598 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012336\nunitConceptId =     8840\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012336\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012336\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012336 (HAPTOGLOBIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012336","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1691,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.339"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.135905 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012494\nunitConceptId =     8554\nplausibleValueLow =      4.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012494\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      4.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012494\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012494 (PEANUT IGE AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      4.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012494","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1692,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.340"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.172607 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012516\nunitConceptId =     8713\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012516\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012516\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012516 (ALBUMIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012516","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1693,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.341"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.755643 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012516\nunitConceptId =     8751\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012516\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012516\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012516 (ALBUMIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012516","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1694,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.342"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":40,"EXECUTION_TIME":"2.332256 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012516\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012516\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012516\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012516 (ALBUMIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012516","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1695,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.343"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.642176 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012516\nunitConceptId =     8859\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012516\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012516\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012516 (ALBUMIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012516","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1696,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.344"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.820485 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012544\nunitConceptId =     8482\nplausibleValueLow =      7.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012544\n\t\tand m.unit_concept_id =     8482\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      7.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012544\n\tand unit_concept_id =     8482\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012544 (PH OF VENOUS BLOOD) and UNIT_CONCEPT_ID     8482 (PH), the number and percent of records that have a value less than      7.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012544","UNIT_CONCEPT_ID":"    8482","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1697,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.345"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803495 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009395\nunitConceptId =     8876\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009395\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009395\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009395 (SYSTOLIC BLOOD PRESSURE--SUPINE) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009395","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1698,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.346"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.740998 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013115\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013115\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013115\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013115 (EOSINOPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013115","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1699,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.347"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.087172 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013115\nunitConceptId =     8785\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013115\n\t\tand m.unit_concept_id =     8785\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013115\n\tand unit_concept_id =     8785\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013115 (EOSINOPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8785 (PER CUBIC MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013115","UNIT_CONCEPT_ID":"    8785","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1700,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.348"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.772080 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013115\nunitConceptId =     8848\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013115\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013115\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013115 (EOSINOPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013115","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1701,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.349"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.597138 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013115\nunitConceptId =     8961\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013115\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013115\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013115 (EOSINOPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013115","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1702,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.350"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.511667 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013115\nunitConceptId =     9435\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013115\n\t\tand m.unit_concept_id =     9435\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013115\n\tand unit_concept_id =     9435\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013115 (EOSINOPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9435 (THOUSAND PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013115","UNIT_CONCEPT_ID":"    9435","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1703,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.351"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.787723 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013201\nunitConceptId =     8636\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013201\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013201\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013201 (BETA-2-MICROGLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013201","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1704,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.352"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.935595 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013201\nunitConceptId =     8713\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013201\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013201\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013201 (BETA-2-MICROGLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013201","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1705,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.353"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.088650 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013201\nunitConceptId =     8748\nplausibleValueLow =    100.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013201\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    100.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013201\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013201 (BETA-2-MICROGLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value less than    100.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013201","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1706,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.354"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.757002 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013201\nunitConceptId =     8751\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013201\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013201\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013201 (BETA-2-MICROGLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013201","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1707,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.355"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.732883 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013201\nunitConceptId =     8840\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013201\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013201\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013201 (BETA-2-MICROGLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013201","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1708,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.356"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.721760 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013201\nunitConceptId =     8842\nplausibleValueLow =    100.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013201\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    100.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013201\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013201 (BETA-2-MICROGLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than    100.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013201","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1709,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.357"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.834798 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013201\nunitConceptId =     8859\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013201\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013201\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013201 (BETA-2-MICROGLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013201","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1710,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.358"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.954605 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013429\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013429\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013429\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013429 (BASOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013429","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1711,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.359"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.833841 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013429\nunitConceptId =     8647\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013429\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013429\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013429 (BASOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013429","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1712,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.360"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.703014 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013429\nunitConceptId =     8816\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013429\n\t\tand m.unit_concept_id =     8816\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013429\n\tand unit_concept_id =     8816\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013429 (BASOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8816 (MILLION PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013429","UNIT_CONCEPT_ID":"    8816","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1713,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.361"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.126525 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013429\nunitConceptId =     8848\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013429\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013429\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013429 (BASOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013429","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1714,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.362"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.618332 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013429\nunitConceptId =     8961\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013429\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013429\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013429 (BASOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013429","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1715,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.363"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.135476 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013429\nunitConceptId =     9254\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013429\n\t\tand m.unit_concept_id =     9254\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013429\n\tand unit_concept_id =     9254\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013429 (BASOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9254 (PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013429","UNIT_CONCEPT_ID":"    9254","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1716,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.364"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.835586 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013429\nunitConceptId =     9435\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013429\n\t\tand m.unit_concept_id =     9435\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013429\n\tand unit_concept_id =     9435\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013429 (BASOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9435 (THOUSAND PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013429","UNIT_CONCEPT_ID":"    9435","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1717,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.365"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.542564 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013429\nunitConceptId =     9436\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013429\n\t\tand m.unit_concept_id =     9436\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013429\n\tand unit_concept_id =     9436\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013429 (BASOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9436 (THOUSAND PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013429","UNIT_CONCEPT_ID":"    9436","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1718,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.366"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.719762 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013429\nunitConceptId =     9444\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013429\n\t\tand m.unit_concept_id =     9444\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013429\n\tand unit_concept_id =     9444\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013429 (BASOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9444 (BILLION PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013429","UNIT_CONCEPT_ID":"    9444","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1719,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.367"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.877440 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013466\nunitConceptId =     8555\nplausibleValueLow =     18.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013466\n\t\tand m.unit_concept_id =     8555\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     18.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013466\n\tand unit_concept_id =     8555\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013466 (APTT IN BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8555 (SECOND), the number and percent of records that have a value less than     18.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013466","UNIT_CONCEPT_ID":"    8555","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1720,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.368"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.320691 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013603\nunitConceptId =     8748\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013603\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013603\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013603 (PROSTATE SPECIFIC AG [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013603","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1721,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.369"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.195745 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013603\nunitConceptId =     8817\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013603\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013603\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013603 (PROSTATE SPECIFIC AG [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013603","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1722,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.370"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.883170 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013603\nunitConceptId =     8842\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013603\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013603\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013603 (PROSTATE SPECIFIC AG [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013603","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1723,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.371"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.912790 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013604\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013604\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013604\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013604 (GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA --30 MINUTES POST 75 G GLUCOSE PO) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013604","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1724,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.372"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.278734 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013650\nunitConceptId =     8647\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013650\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013650\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013650 (NEUTROPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013650","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1725,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.373"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.786064 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013650\nunitConceptId =     8848\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013650\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013650\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013650 (NEUTROPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013650","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1726,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.374"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.713076 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013650\nunitConceptId =     8961\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013650\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013650\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013650 (NEUTROPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013650","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1727,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.375"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.205777 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013650\nunitConceptId =     9444\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013650\n\t\tand m.unit_concept_id =     9444\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013650\n\tand unit_concept_id =     9444\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013650 (NEUTROPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9444 (BILLION PER LITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013650","UNIT_CONCEPT_ID":"    9444","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1728,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.376"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.010759 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013682\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013682\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013682\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013682 (UREA NITROGEN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013682","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1729,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.377"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.887355 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013682\nunitConceptId =     8753\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013682\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013682\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013682 (UREA NITROGEN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013682","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1730,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.378"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.937699 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013682\nunitConceptId =     8840\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013682\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013682\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013682 (UREA NITROGEN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013682","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1731,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.379"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.196195 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013707\nunitConceptId =     8588\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013707\n\t\tand m.unit_concept_id =     8588\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013707\n\tand unit_concept_id =     8588\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013707 (ERYTHROCYTE SEDIMENTATION RATE BY WESTERGREN METHOD) and UNIT_CONCEPT_ID     8588 (MILLIMETER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013707","UNIT_CONCEPT_ID":"    8588","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1732,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.380"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.831571 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013707\nunitConceptId =     8752\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013707\n\t\tand m.unit_concept_id =     8752\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013707\n\tand unit_concept_id =     8752\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013707 (ERYTHROCYTE SEDIMENTATION RATE BY WESTERGREN METHOD) and UNIT_CONCEPT_ID     8752 (MILLIMETER PER HOUR), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013707","UNIT_CONCEPT_ID":"    8752","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1733,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.381"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.988822 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013721\nunitConceptId =     8554\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013721\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013721\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013721 (ASPARTATE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013721","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1734,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.382"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803197 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013721\nunitConceptId =     8645\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013721\n\t\tand m.unit_concept_id =     8645\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013721\n\tand unit_concept_id =     8645\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013721 (ASPARTATE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8645 (UNIT PER LITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013721","UNIT_CONCEPT_ID":"    8645","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1735,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.383"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.855874 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013721\nunitConceptId =     8713\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013721\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013721\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013721 (ASPARTATE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013721","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1736,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.384"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.667500 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013721\nunitConceptId =     8840\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013721\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013721\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013721 (ASPARTATE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013721","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1737,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.385"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.817381 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013721\nunitConceptId =     8923\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013721\n\t\tand m.unit_concept_id =     8923\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013721\n\tand unit_concept_id =     8923\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013721 (ASPARTATE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8923 (INTERNATIONAL UNIT PER LITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013721","UNIT_CONCEPT_ID":"    8923","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1738,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.386"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.887264 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013762\nunitConceptId =     8576\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013762\n\t\tand m.unit_concept_id =     8576\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013762\n\tand unit_concept_id =     8576\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013762 (BODY WEIGHT MEASURED) and UNIT_CONCEPT_ID     8576 (MILLIGRAM), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013762","UNIT_CONCEPT_ID":"    8576","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1739,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.387"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.887860 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013762\nunitConceptId =     8739\nplausibleValueLow =      4.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013762\n\t\tand m.unit_concept_id =     8739\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      4.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013762\n\tand unit_concept_id =     8739\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013762 (BODY WEIGHT MEASURED) and UNIT_CONCEPT_ID     8739 (POUND (US)), the number and percent of records that have a value less than      4.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013762","UNIT_CONCEPT_ID":"    8739","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1740,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.388"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.834665 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013826\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013826\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013826\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013826 (GLUCOSE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013826","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1741,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.389"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.022736 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013869\nunitConceptId =     8554\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013869\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013869\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013869 (BASOPHILS/100 LEUKOCYTES IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013869","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1742,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.390"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.842827 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014173\nunitConceptId =     8729\nplausibleValueLow =     20.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014173\n\t\tand m.unit_concept_id =     8729\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     20.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014173\n\tand unit_concept_id =     8729\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014173 (CALCITRIOL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8729 (PICOMOLE PER LITER), the number and percent of records that have a value less than     20.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014173","UNIT_CONCEPT_ID":"    8729","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1743,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.391"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.772386 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014173\nunitConceptId =     8842\nplausibleValueLow =     11.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014173\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     11.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014173\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014173 (CALCITRIOL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than     11.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014173","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1744,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.392"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.326988 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014173\nunitConceptId =     8845\nplausibleValueLow =     24.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014173\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     24.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014173\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014173 (CALCITRIOL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value less than     24.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014173","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1745,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.393"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.772077 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014576\nunitConceptId =     8713\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014576\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014576\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014576 (CHLORIDE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014576","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1746,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.394"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.253357 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014576\nunitConceptId =     8753\nplausibleValueLow =     98.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014576\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     98.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014576\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014576 (CHLORIDE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than     98.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014576","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1747,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.395"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.941738 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014576\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014576\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014576\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014576 (CHLORIDE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014576","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1748,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.396"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803849 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014576\nunitConceptId =     8842\nplausibleValueLow =     95.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014576\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     95.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014576\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014576 (CHLORIDE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than     95.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014576","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1749,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.397"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.957230 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014576\nunitConceptId =     9553\nplausibleValueLow =     77.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014576\n\t\tand m.unit_concept_id =     9553\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     77.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014576\n\tand unit_concept_id =     9553\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014576 (CHLORIDE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9553 (MILLIEQUIVALENT PER DECILITER), the number and percent of records that have a value less than     77.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014576","UNIT_CONCEPT_ID":"    9553","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1750,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.398"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.155321 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014576\nunitConceptId =     9557\nplausibleValueLow =     99.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014576\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     99.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014576\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014576 (CHLORIDE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than     99.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014576","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1751,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.399"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.733830 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014716\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014716\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014716\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014716 (GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA --1 HOUR POST 100 G GLUCOSE PO) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014716","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1752,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.400"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.105791 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014791\nunitConceptId =     8840\nplausibleValueLow =     56.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014791\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     56.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014791\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014791 (APOLIPOPROTEIN B [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     56.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014791","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1753,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.401"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.704115 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015076\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015076\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015076\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015076 (SOYBEAN IGE AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015076","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1754,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.402"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.856060 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015183\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015183\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015183\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015183 (ERYTHROCYTE SEDIMENTATION RATE) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015183","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1755,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.403"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.587131 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015183\nunitConceptId =     8752\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015183\n\t\tand m.unit_concept_id =     8752\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015183\n\tand unit_concept_id =     8752\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015183 (ERYTHROCYTE SEDIMENTATION RATE) and UNIT_CONCEPT_ID     8752 (MILLIMETER PER HOUR), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015183","UNIT_CONCEPT_ID":"    8752","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1756,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.404"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.102729 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015280\nunitConceptId =     8848\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015280\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015280\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015280 (BLASTS [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015280","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1757,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.405"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.586004 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015375\nunitConceptId =     8751\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015375\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015375\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015375 (AMIODARONE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015375","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1758,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.406"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819700 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015375\nunitConceptId =     8859\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015375\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015375\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015375 (AMIODARONE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015375","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1759,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.407"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.856690 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015377\nunitConceptId =     8713\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015377\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015377\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015377 (CALCIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015377","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1760,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.408"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.654154 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015377\nunitConceptId =     8753\nplausibleValueLow =      7.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015377\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      7.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015377\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015377 (CALCIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      7.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015377","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1761,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.409"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.003886 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015377\nunitConceptId =     8840\nplausibleValueLow =      8.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015377\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      8.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015377\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015377 (CALCIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      8.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015377","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1762,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.410"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.734772 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015473\nunitConceptId =     8753\nplausibleValueLow =     18.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015473\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     18.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015473\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015473 (BICARBONATE [MOLES/VOLUME] IN PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than     18.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015473","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1763,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.411"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.656075 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015473\nunitConceptId =     9557\nplausibleValueLow =     18.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015473\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     18.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015473\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015473 (BICARBONATE [MOLES/VOLUME] IN PLASMA) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than     18.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015473","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1764,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.412"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.171758 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015586\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015586\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015586\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015586 (SEGMENTED NEUTROPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015586","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1765,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.413"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.766082 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015586\nunitConceptId =     8848\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015586\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015586\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015586 (SEGMENTED NEUTROPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015586","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1766,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.414"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.751258 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015586\nunitConceptId =     8961\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015586\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015586\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015586 (SEGMENTED NEUTROPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015586","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1767,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.415"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.567686 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015632\nunitConceptId =     8647\nplausibleValueLow =    232.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015632\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    232.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015632\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015632 (CARBON DIOXIDE, TOTAL [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value less than    232.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015632","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1768,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.416"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.785277 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015632\nunitConceptId =     8753\nplausibleValueLow =     20.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015632\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     20.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015632\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015632 (CARBON DIOXIDE, TOTAL [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than     20.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015632","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1769,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.417"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.371286 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015632\nunitConceptId =     8840\nplausibleValueLow =    360.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015632\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    360.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015632\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015632 (CARBON DIOXIDE, TOTAL [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than    360.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015632","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1770,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.418"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.654149 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015632\nunitConceptId =     9557\nplausibleValueLow =     20.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015632\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     20.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015632\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015632 (CARBON DIOXIDE, TOTAL [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than     20.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015632","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1771,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.419"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.826138 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015731\nunitConceptId =     8848\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015731\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015731\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015731 (BERMUDA GRASS IGE AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015731","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1772,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.420"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.820078 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015736\nunitConceptId =     8482\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015736\n\t\tand m.unit_concept_id =     8482\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015736\n\tand unit_concept_id =     8482\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015736 (PH OF URINE) and UNIT_CONCEPT_ID     8482 (PH), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015736","UNIT_CONCEPT_ID":"    8482","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1773,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.421"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.926021 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015774\nunitConceptId =     8840\nplausibleValueLow =      3.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015774\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      3.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015774\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015774 (CALCIUM.IONIZED [MOLES/VOLUME] IN SERUM OR PLASMA BY CALCULATION) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      3.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015774","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1774,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.422"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803405 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015813\nunitConceptId =     9101\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015813\n\t\tand m.unit_concept_id =     9101\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015813\n\tand unit_concept_id =     9101\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015813 (CARDIOLIPIN IGM AB [UNITS/VOLUME] IN SERUM BY IMMUNOASSAY) and UNIT_CONCEPT_ID     9101 (IGM PHOSPHOLIPID UNIT), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015813","UNIT_CONCEPT_ID":"    9101","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1775,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.423"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.257349 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015956\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015956\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015956\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015956 (EOSINOPHILS/100 LEUKOCYTES IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015956","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1776,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.424"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.735017 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015956\nunitConceptId =     8848\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015956\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015956\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015956 (EOSINOPHILS/100 LEUKOCYTES IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015956","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1777,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.425"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.957521 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016049\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016049\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016049\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016049 (TESTOSTERONE FREE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016049","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1778,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.426"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.587548 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016049\nunitConceptId =     8817\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016049\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016049\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016049 (TESTOSTERONE FREE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016049","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1779,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.427"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.941456 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016049\nunitConceptId =     8845\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016049\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016049\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016049 (TESTOSTERONE FREE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016049","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1780,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.428"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.925787 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016201\nunitConceptId =     8751\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016201\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016201\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016201 (VALPROATE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016201","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1781,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.429"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.564932 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016201\nunitConceptId =     8859\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016201\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016201\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016201 (VALPROATE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016201","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1782,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.430"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.367590 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016244\nunitConceptId =     8860\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016244\n\t\tand m.unit_concept_id =     8860\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016244\n\tand unit_concept_id =     8860\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016244 (INSULIN [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8860 (MICROUNIT PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016244","UNIT_CONCEPT_ID":"    8860","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1783,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.431"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.880707 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016244\nunitConceptId =     8985\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016244\n\t\tand m.unit_concept_id =     8985\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016244\n\tand unit_concept_id =     8985\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016244 (INSULIN [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8985 (INTERNATIONAL UNIT PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016244","UNIT_CONCEPT_ID":"    8985","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1784,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.432"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.972944 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016244\nunitConceptId = 44777578\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016244\n\t\tand m.unit_concept_id = 44777578\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016244\n\tand unit_concept_id = 44777578\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016244 (INSULIN [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID 44777578 (MILLIUNIT PER LITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016244","UNIT_CONCEPT_ID":"44777578","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1785,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.433"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.757655 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016258\nunitConceptId =     8582\nplausibleValueLow =     40.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016258\n\t\tand m.unit_concept_id =     8582\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     40.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016258\n\tand unit_concept_id =     8582\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016258 (WAIST CIRCUMFERENCE AT UMBILICUS BY TAPE MEASURE) and UNIT_CONCEPT_ID     8582 (CENTIMETER), the number and percent of records that have a value less than     40.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016258","UNIT_CONCEPT_ID":"    8582","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1786,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.434"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.704856 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016258\nunitConceptId =     9330\nplausibleValueLow =     15.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016258\n\t\tand m.unit_concept_id =     9330\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     15.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016258\n\tand unit_concept_id =     9330\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016258 (WAIST CIRCUMFERENCE AT UMBILICUS BY TAPE MEASURE) and UNIT_CONCEPT_ID     9330 (INCH (US)), the number and percent of records that have a value less than     15.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016258","UNIT_CONCEPT_ID":"    9330","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1787,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.435"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.824370 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016290\nunitConceptId =     9212\nplausibleValueLow =     18.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016290\n\t\tand m.unit_concept_id =     9212\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     18.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016290\n\tand unit_concept_id =     9212\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016290 (APTT IN CONTROL BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     9212 (SECOND), the number and percent of records that have a value less than     18.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016290","UNIT_CONCEPT_ID":"    9212","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1788,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.436"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.902525 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016293\nunitConceptId =     8753\nplausibleValueLow =     18.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016293\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     18.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016293\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016293 (BICARBONATE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than     18.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016293","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1789,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.437"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.726673 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016293\nunitConceptId =     9557\nplausibleValueLow =     18.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016293\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     18.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016293\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016293 (BICARBONATE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than     18.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016293","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1790,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.438"},{"NUM_VIOLATED_ROWS":14,"PCT_VIOLATED_ROWS":0.2258,"NUM_DENOMINATOR_ROWS":62,"EXECUTION_TIME":"1.750016 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016311\nunitConceptId =     8554\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016311\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016311\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016311 (CREATINE KINASE.MB/CREATINE KINASE.TOTAL IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016311","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1791,"FAILED":1,"THRESHOLD_VALUE":5,"_row":"18.439"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.725438 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016723\nunitConceptId =     8713\nplausibleValueLow =      2.500\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016723\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.500\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016723\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016723 (CREATININE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      2.500.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016723","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1792,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.440"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.834055 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016723\nunitConceptId =     8749\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016723\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016723\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016723 (CREATININE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016723","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1793,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.441"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.456058 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016723\nunitConceptId =     8753\nplausibleValueLow =      3.500\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016723\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      3.500\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016723\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016723 (CREATININE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      3.500.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016723","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1794,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.442"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.173262 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212294\nunitConceptId =     8840\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212294\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212294\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212294 (CREATININE; BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212294","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1795,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.443"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.988286 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016723\nunitConceptId =     9117\nplausibleValueLow =     44.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016723\n\t\tand m.unit_concept_id =     9117\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     44.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016723\n\tand unit_concept_id =     9117\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016723 (CREATININE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9117 (MILLILITER PER MINUTE PER 1.73 SQUARE METER), the number and percent of records that have a value less than     44.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016723","UNIT_CONCEPT_ID":"    9117","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1796,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.444"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.771969 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016771\nunitConceptId =     8645\nplausibleValueLow =      6.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016771\n\t\tand m.unit_concept_id =     8645\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      6.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016771\n\tand unit_concept_id =     8645\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016771 (AMYLASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8645 (UNIT PER LITER), the number and percent of records that have a value less than      6.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016771","UNIT_CONCEPT_ID":"    8645","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1797,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.445"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.621304 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016913\nunitConceptId =     8554\nplausibleValueLow =      9.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016913\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      9.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016913\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016913 (CREATINE KINASE.MM [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      9.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016913","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1798,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.446"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.611798 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016991\nunitConceptId =     8713\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016991\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016991\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016991 (THYROXINE (T4) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016991","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1799,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.447"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.672110 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016991\nunitConceptId =     8817\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016991\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016991\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016991 (THYROXINE (T4) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016991","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1800,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.448"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.135763 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016991\nunitConceptId =     8837\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016991\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016991\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016991 (THYROXINE (T4) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016991","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1801,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.449"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.703098 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016991\nunitConceptId =     8840\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016991\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016991\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016991 (THYROXINE (T4) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016991","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1802,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.450"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.820143 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017044\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017044\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017044\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017044 (THYROTROPIN RECEPTOR AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017044","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1803,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.451"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.680589 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017044\nunitConceptId =     8645\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017044\n\t\tand m.unit_concept_id =     8645\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017044\n\tand unit_concept_id =     8645\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017044 (THYROTROPIN RECEPTOR AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8645 (UNIT PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017044","UNIT_CONCEPT_ID":"    8645","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1804,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.452"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819506 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017044\nunitConceptId =     8923\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017044\n\t\tand m.unit_concept_id =     8923\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017044\n\tand unit_concept_id =     8923\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017044 (THYROTROPIN RECEPTOR AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8923 (INTERNATIONAL UNIT PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017044","UNIT_CONCEPT_ID":"    8923","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1805,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.453"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.856245 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017250\nunitConceptId =     8636\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017250\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017250\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017250 (CREATININE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017250","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1806,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.454"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.518982 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017250\nunitConceptId =     8723\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017250\n\t\tand m.unit_concept_id =     8723\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017250\n\tand unit_concept_id =     8723\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017250 (CREATININE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8723 (MILLIGRAM PER GRAM), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017250","UNIT_CONCEPT_ID":"    8723","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1807,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.455"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.857313 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017250\nunitConceptId =     8751\nplausibleValueLow =    300.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017250\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    300.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017250\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017250 (CREATININE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than    300.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017250","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1808,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.456"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.750029 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017250\nunitConceptId =     8753\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017250\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017250\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017250 (CREATININE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017250","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1809,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.457"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.841010 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212295\nunitConceptId =     8840\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212295\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212295\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212295 (CREATININE; OTHER SOURCE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212295","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1810,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.458"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.740929 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017250\nunitConceptId =     8842\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017250\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017250\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017250 (CREATININE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017250","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1811,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.459"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.321082 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017250\nunitConceptId =     8861\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017250\n\t\tand m.unit_concept_id =     8861\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017250\n\tand unit_concept_id =     8861\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017250 (CREATININE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8861 (MILLIGRAM PER MILLILITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017250","UNIT_CONCEPT_ID":"    8861","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1812,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.460"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.649595 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017250\nunitConceptId =     9117\nplausibleValueLow =      6.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017250\n\t\tand m.unit_concept_id =     9117\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      6.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017250\n\tand unit_concept_id =     9117\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017250 (CREATININE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     9117 (MILLILITER PER MINUTE PER 1.73 SQUARE METER), the number and percent of records that have a value less than      6.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017250","UNIT_CONCEPT_ID":"    9117","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1813,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.461"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.788493 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017501\nunitConceptId =     8647\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017501\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017501\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017501 (NEUTROPHILS [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017501","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1814,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.462"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.903457 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017501\nunitConceptId =     8848\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017501\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017501\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017501 (NEUTROPHILS [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017501","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1815,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.463"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.773338 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017732\nunitConceptId =     8686\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017732\n\t\tand m.unit_concept_id =     8686\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017732\n\tand unit_concept_id =     8686\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017732 (NEUTROPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8686 (CUBIC MILLIMETER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017732","UNIT_CONCEPT_ID":"    8686","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1816,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.464"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.088057 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017732\nunitConceptId =     8785\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017732\n\t\tand m.unit_concept_id =     8785\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017732\n\tand unit_concept_id =     8785\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017732 (NEUTROPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8785 (PER CUBIC MILLIMETER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017732","UNIT_CONCEPT_ID":"    8785","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1817,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.465"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.818531 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017732\nunitConceptId =     8848\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017732\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017732\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017732 (NEUTROPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017732","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1818,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.466"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.834531 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017732\nunitConceptId =     8961\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017732\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017732\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017732 (NEUTROPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017732","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1819,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.467"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.900696 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017766\nunitConceptId =     8636\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017766\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017766\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017766 (COMPLEMENT C4 [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017766","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1820,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.468"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.214346 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017766\nunitConceptId =     8751\nplausibleValueLow =     15.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017766\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     15.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017766\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017766 (COMPLEMENT C4 [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than     15.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017766","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1821,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.469"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.980327 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017766\nunitConceptId =     8840\nplausibleValueLow =     15.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017766\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     15.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017766\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017766 (COMPLEMENT C4 [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     15.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017766","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1822,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.470"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.781110 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018010\nunitConceptId =     8554\nplausibleValueLow =     45.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018010\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     45.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018010\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018010 (NEUTROPHILS/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than     45.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018010","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1823,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.471"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819612 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018081\nunitConceptId =     8748\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018081\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018081\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018081 (BETA-2-MICROGLOBULIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018081","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1824,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.472"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.566237 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018081\nunitConceptId =     8751\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018081\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018081\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018081 (BETA-2-MICROGLOBULIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018081","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1825,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.473"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.887639 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018229\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018229\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018229\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018229 (MYELOCYTES/100 LEUKOCYTES IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018229","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1826,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.474"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.824282 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018311\nunitConceptId =     8523\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018311\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018311\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018311 (UREA NITROGEN/CREATININE [MASS RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018311","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1827,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.475"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.788484 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018311\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018311\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018311\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018311 (UREA NITROGEN/CREATININE [MASS RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018311","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1828,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.476"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.534201 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018311\nunitConceptId =     9074\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018311\n\t\tand m.unit_concept_id =     9074\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018311\n\tand unit_concept_id =     9074\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018311 (UREA NITROGEN/CREATININE [MASS RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9074 (MILLIGRAM PER MILLIGRAM OF CREATININE), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018311","UNIT_CONCEPT_ID":"    9074","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1829,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.477"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.867779 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018677\nunitConceptId =     8555\nplausibleValueLow =     18.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018677\n\t\tand m.unit_concept_id =     8555\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     18.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018677\n\tand unit_concept_id =     8555\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018677 (APTT IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8555 (SECOND), the number and percent of records that have a value less than     18.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018677","UNIT_CONCEPT_ID":"    8555","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1830,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.478"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.916730 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018910\nunitConceptId =     8748\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018910\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018910\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018910 (ALKALINE PHOSPHATASE.BONE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018910","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1831,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.479"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.565727 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018910\nunitConceptId =     8842\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018910\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018910\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018910 (ALKALINE PHOSPHATASE.BONE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018910","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1832,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.480"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.810266 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019069\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019069\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019069\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019069 (MONOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019069","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1833,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.481"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.735081 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019069\nunitConceptId =     9234\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019069\n\t\tand m.unit_concept_id =     9234\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019069\n\tand unit_concept_id =     9234\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019069 (MONOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     9234 (VOLUME PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019069","UNIT_CONCEPT_ID":"    9234","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1834,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.482"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.587939 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019198\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019198\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019198\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019198 (LYMPHOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019198","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1835,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.483"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.586127 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019198\nunitConceptId =     8647\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019198\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019198\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019198 (LYMPHOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019198","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1836,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.484"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.734830 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019198\nunitConceptId =     8848\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019198\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019198\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019198 (LYMPHOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019198","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1837,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.485"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.688598 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019550\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019550\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019550\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019550 (SODIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019550","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1838,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.486"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.840271 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019550\nunitConceptId =     8753\nplausibleValueLow =    100.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019550\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    100.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019550\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019550 (SODIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than    100.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019550","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1839,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.487"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.698459 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019550\nunitConceptId =     9557\nplausibleValueLow =    100.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019550\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    100.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019550\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019550 (SODIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than    100.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019550","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1840,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.488"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.654749 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019676\nunitConceptId =     8840\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019676\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019676\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019676 (BILIRUBIN.CONJUGATED [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019676","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1841,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.489"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.669835 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019800\nunitConceptId =     8748\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019800\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019800\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019800 (TROPONIN T.CARDIAC [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019800","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1842,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.490"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.680419 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019800\nunitConceptId =     8842\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019800\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019800\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019800 (TROPONIN T.CARDIAC [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019800","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1843,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.491"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.565183 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019812\nunitConceptId =     8751\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019812\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019812\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019812 (KAPPA LIGHT CHAINS [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019812","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1844,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.492"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.619555 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019812\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019812\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019812\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019812 (KAPPA LIGHT CHAINS [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019812","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1845,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.493"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.663884 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019897\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019897\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019897\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019897 (ERYTHROCYTE DISTRIBUTION WIDTH [RATIO] BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019897","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1846,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.494"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.703533 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019897\nunitConceptId =     8583\nplausibleValueLow =     12.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019897\n\t\tand m.unit_concept_id =     8583\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     12.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019897\n\tand unit_concept_id =     8583\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019897 (ERYTHROCYTE DISTRIBUTION WIDTH [RATIO] BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8583 (FEMTOLITER), the number and percent of records that have a value less than     12.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019897","UNIT_CONCEPT_ID":"    8583","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1847,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.495"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.669919 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015232\nunitConceptId =     8840\nplausibleValueLow =     50.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015232\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     50.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015232\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015232 (CHOLESTEROL [MASS/VOLUME] IN BODY FLUID) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     50.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015232","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1848,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.496"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.731188 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019900\nunitConceptId =     8840\nplausibleValueLow =     50.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019900\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     50.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019900\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019900 (CHOLESTEROL [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     50.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019900","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1849,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.497"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.566016 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020138\nunitConceptId =     8753\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020138\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020138\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020138 (LACTATE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020138","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1850,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.498"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.940219 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020138\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020138\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020138\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020138 (LACTATE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020138","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1851,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.499"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.511478 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020149\nunitConceptId =     8736\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020149\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020149\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020149 (CALCIDIOL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020149","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1852,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.500"},{"NUM_VIOLATED_ROWS":6,"PCT_VIOLATED_ROWS":0.1,"NUM_DENOMINATOR_ROWS":60,"EXECUTION_TIME":"1.593855 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020149\nunitConceptId =     8842\nplausibleValueLow =     14.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020149\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     14.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020149\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020149 (CALCIDIOL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than     14.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020149","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1853,"FAILED":1,"THRESHOLD_VALUE":5,"_row":"18.501"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.720225 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020149\nunitConceptId =     8845\nplausibleValueLow =      8.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020149\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      8.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020149\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020149 (CALCIDIOL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value less than      8.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020149","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1854,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.502"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.710203 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020399\nunitConceptId =     8840\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020399\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020399\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020399 (GLUCOSE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020399","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1855,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.503"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.940198 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020399\nunitConceptId =     8862\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020399\n\t\tand m.unit_concept_id =     8862\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020399\n\tand unit_concept_id =     8862\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020399 (GLUCOSE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8862 (MILLIOSMOLE PER KILOGRAM), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020399","UNIT_CONCEPT_ID":"    8862","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1856,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.504"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.786184 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020416\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020416\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020416\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020416 (ERYTHROCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020416","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1857,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.505"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.639117 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020416\nunitConceptId =     8713\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020416\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020416\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020416 (ERYTHROCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020416","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1858,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.506"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.718395 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020416\nunitConceptId =     8785\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020416\n\t\tand m.unit_concept_id =     8785\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020416\n\tand unit_concept_id =     8785\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020416 (ERYTHROCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8785 (PER CUBIC MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020416","UNIT_CONCEPT_ID":"    8785","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1859,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.507"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.519487 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020416\nunitConceptId =     8815\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020416\n\t\tand m.unit_concept_id =     8815\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020416\n\tand unit_concept_id =     8815\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020416 (ERYTHROCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8815 (MILLION PER MICROLITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020416","UNIT_CONCEPT_ID":"    8815","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1860,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.508"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.619188 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020416\nunitConceptId =     8816\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020416\n\t\tand m.unit_concept_id =     8816\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020416\n\tand unit_concept_id =     8816\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020416 (ERYTHROCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8816 (MILLION PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020416","UNIT_CONCEPT_ID":"    8816","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1861,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.509"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.718036 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020416\nunitConceptId =     8848\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020416\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020416\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020416 (ERYTHROCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020416","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1862,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.510"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.741100 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020416\nunitConceptId =     8961\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020416\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020416\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020416 (ERYTHROCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020416","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1863,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.511"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.772673 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020416\nunitConceptId =     9436\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020416\n\t\tand m.unit_concept_id =     9436\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020416\n\tand unit_concept_id =     9436\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020416 (ERYTHROCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9436 (THOUSAND PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020416","UNIT_CONCEPT_ID":"    9436","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1864,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.512"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.887529 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020416\nunitConceptId =     9665\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020416\n\t\tand m.unit_concept_id =     9665\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020416\n\tand unit_concept_id =     9665\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020416 (ERYTHROCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9665 (MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020416","UNIT_CONCEPT_ID":"    9665","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1865,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.513"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.273316 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020460\nunitConceptId =     8751\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020460\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020460\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020460 (C REACTIVE PROTEIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020460","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1866,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.514"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.465962 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020460\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020460\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020460\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020460 (C REACTIVE PROTEIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020460","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1867,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.515"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.782855 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020509\nunitConceptId =     8523\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020509\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020509\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020509 (ALBUMIN/GLOBULIN [MASS RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020509","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1868,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.516"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.634627 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020564\nunitConceptId =     8749\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020564\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020564\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020564 (CREATININE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020564","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1869,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.517"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.486282 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009508\nunitConceptId =     8840\nplausibleValueLow =     17.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009508\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     17.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009508\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009508 (CREATININE [MOLES/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     17.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009508","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1870,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.518"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.888283 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020630\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020630\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020630\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020630 (PROTEIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020630","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1871,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.519"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.903163 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020630\nunitConceptId =     8636\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020630\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020630\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020630 (PROTEIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020630","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1872,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.520"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.841961 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020630\nunitConceptId =     8713\nplausibleValueLow =      6.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020630\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      6.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020630\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020630 (PROTEIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      6.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020630","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1873,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.521"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.204150 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020682\nunitConceptId =     8523\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020682\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020682\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020682 (ALBUMIN/CREATININE [RATIO] IN URINE) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020682","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1874,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.522"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.754166 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020891\nunitConceptId =     8517\nplausibleValueLow =     36.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020891\n\t\tand m.unit_concept_id =     8517\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     36.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020891\n\tand unit_concept_id =     8517\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020891 (BODY TEMPERATURE) and UNIT_CONCEPT_ID     8517 (FARAD), the number and percent of records that have a value less than     36.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020891","UNIT_CONCEPT_ID":"    8517","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1875,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.523"},{"NUM_VIOLATED_ROWS":4,"PCT_VIOLATED_ROWS":0.0082,"NUM_DENOMINATOR_ROWS":486,"EXECUTION_TIME":"1.798626 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020891\nunitConceptId =   586323\nplausibleValueLow =     34.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020891\n\t\tand m.unit_concept_id =   586323\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     34.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020891\n\tand unit_concept_id =   586323\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020891 (BODY TEMPERATURE) and UNIT_CONCEPT_ID   586323 (DEGREE CELSIUS), the number and percent of records that have a value less than     34.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020891","UNIT_CONCEPT_ID":"  586323","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1876,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.524"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.919960 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3021044\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3021044\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3021044\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3021044 (IRON BINDING CAPACITY [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3021044","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1877,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.525"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.535253 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3021044\nunitConceptId =     8749\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3021044\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3021044\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3021044 (IRON BINDING CAPACITY [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3021044","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1878,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.526"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":104,"EXECUTION_TIME":"1.734584 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3021044\nunitConceptId =     8837\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3021044\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3021044\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3021044 (IRON BINDING CAPACITY [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3021044","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1879,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.527"},{"NUM_VIOLATED_ROWS":76,"PCT_VIOLATED_ROWS":0.0747,"NUM_DENOMINATOR_ROWS":1018,"EXECUTION_TIME":"1.856857 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3021119\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3021119\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3021119\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3021119 (CALCIUM.IONIZED [MOLES/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3021119","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1880,"FAILED":1,"THRESHOLD_VALUE":5,"_row":"18.528"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.519093 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3021119\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3021119\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3021119\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3021119 (CALCIUM.IONIZED [MOLES/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3021119","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1881,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.529"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.904593 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3021119\nunitConceptId =     9557\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3021119\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3021119\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3021119 (CALCIUM.IONIZED [MOLES/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3021119","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1882,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.530"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.723922 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3021447\nunitConceptId =     8876\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3021447\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3021447\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3021447 (CARBON DIOXIDE [PARTIAL PRESSURE] IN VENOUS BLOOD) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3021447","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1883,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.531"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.888588 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3021614\nunitConceptId =     8985\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3021614\n\t\tand m.unit_concept_id =     8985\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3021614\n\tand unit_concept_id =     8985\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3021614 (RHEUMATOID FACTOR [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8985 (INTERNATIONAL UNIT PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3021614","UNIT_CONCEPT_ID":"    8985","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1884,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.532"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.772374 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3021717\nunitConceptId =     8554\nplausibleValueLow =     20.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3021717\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     20.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3021717\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3021717 (TRIIODOTHYRONINE RESIN UPTAKE (T3RU) IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than     20.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3021717","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1885,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.533"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.888871 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3021737\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3021737\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3021737\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3021737 (GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA --2 HOURS POST MEAL) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3021737","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1886,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.534"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.718461 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022038\nunitConceptId =     8840\nplausibleValueLow =     40.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022038\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     40.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022038\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022038 (TRIGLYCERIDE [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     40.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022038","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1887,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.535"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.050105 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022096\nunitConceptId =     8554\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022096\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022096\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022096 (BASOPHILS/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022096","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1888,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.536"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.869992 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022192\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022192\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022192\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022192 (TRIGLYCERIDE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022192","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1889,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.537"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.906287 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022192\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022192\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022192\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022192 (TRIGLYCERIDE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022192","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1890,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.538"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.066870 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022192\nunitConceptId =     8840\nplausibleValueLow =     40.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022192\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     40.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022192\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022192 (TRIGLYCERIDE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     40.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022192","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1891,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.539"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.703181 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8510\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8510\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8510\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8510 (UNIT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8510","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1892,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.540"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.831452 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8517\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8517\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8517\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8517 (FARAD), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8517","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1893,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.541"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.066025 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8519\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8519\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8519\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8519 (LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8519","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1894,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.542"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.383492 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8523\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1895,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.543"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.006062 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8524\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8524\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8524\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8524 (TIMES), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8524","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1896,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.544"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.753952 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1897,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.545"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.752442 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8555\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8555\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8555\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8555 (SECOND), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8555","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1898,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.546"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.988057 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8576\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8576\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8576\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8576 (MILLIGRAM), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8576","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1899,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.547"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.603245 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8582\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8582\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8582\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8582 (CENTIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8582","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1900,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.548"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.811191 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8587\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8587\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8587\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8587 (MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8587","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1901,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.549"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.764453 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8753\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1902,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.550"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.772148 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8816\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8816\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8816\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8816 (MILLION PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8816","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1903,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.551"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.921296 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1904,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.552"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.719415 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     9384\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     9384\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     9384\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     9384 (POINT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    9384","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1905,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.553"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.903296 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     9529\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     9529\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     9529\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     9529 (KILOGRAM), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    9529","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1906,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.554"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.619035 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     9593\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     9593\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     9593\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     9593 (MILLISECOND), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    9593","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1907,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.555"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.656142 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     9624\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     9624\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     9624\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     9624 (PARSEC), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    9624","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1908,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.556"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.004116 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     9677\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     9677\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     9677\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     9677 (VOLT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    9677","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1909,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.557"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.918697 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022466\nunitConceptId =     8860\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022466\n\t\tand m.unit_concept_id =     8860\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022466\n\tand unit_concept_id =     8860\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022466 (INSULIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8860 (MICROUNIT PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022466","UNIT_CONCEPT_ID":"    8860","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1910,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.558"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.947945 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022521\nunitConceptId =     8588\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022521\n\t\tand m.unit_concept_id =     8588\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022521\n\tand unit_concept_id =     8588\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022521 (ERYTHROCYTE SEDIMENTATION RATE BY WINTROBE METHOD) and UNIT_CONCEPT_ID     8588 (MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022521","UNIT_CONCEPT_ID":"    8588","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1911,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.559"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.982880 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022521\nunitConceptId =     8752\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022521\n\t\tand m.unit_concept_id =     8752\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022521\n\tand unit_concept_id =     8752\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022521 (ERYTHROCYTE SEDIMENTATION RATE BY WINTROBE METHOD) and UNIT_CONCEPT_ID     8752 (MILLIMETER PER HOUR), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022521","UNIT_CONCEPT_ID":"    8752","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1912,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.560"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14,"EXECUTION_TIME":"1.803310 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022548\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022548\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022548\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022548 (GLUCOSE [MASS/VOLUME] IN CEREBRAL SPINAL FLUID) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022548","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1913,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.561"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.769534 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022616\nunitConceptId =     8751\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022616\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022616\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022616 (PHENYTOIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022616","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1914,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.562"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.872562 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022616\nunitConceptId =     8859\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022616\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022616\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022616 (PHENYTOIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022616","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1915,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.563"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.734580 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022709\nunitConceptId =     8848\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022709\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022709\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022709 (PROMYELOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022709","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1916,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.564"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.707976 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022756\nunitConceptId =     8636\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022756\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022756\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022756 (CERULOPLASMIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022756","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1917,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.565"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.551037 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022756\nunitConceptId =     8749\nplausibleValueLow =    164.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022756\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    164.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022756\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022756 (CERULOPLASMIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than    164.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022756","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1918,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.566"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.863353 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022756\nunitConceptId =     8751\nplausibleValueLow =    121.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022756\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    121.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022756\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022756 (CERULOPLASMIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than    121.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022756","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1919,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.567"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.784402 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022756\nunitConceptId =     8840\nplausibleValueLow =     19.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022756\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     19.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022756\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022756 (CERULOPLASMIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     19.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022756","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1920,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.568"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.158165 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022826\nunitConceptId =     8723\nplausibleValueLow =      0.001\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022826\n\t\tand m.unit_concept_id =     8723\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.001\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022826\n\tand unit_concept_id =     8723\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022826 (MICROALBUMIN/CREATININE [RATIO] IN URINE) and UNIT_CONCEPT_ID     8723 (MILLIGRAM PER GRAM), the number and percent of records that have a value less than      0.001.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022826","UNIT_CONCEPT_ID":"    8723","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1921,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.569"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.640698 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022826\nunitConceptId =     8838\nplausibleValueLow =      0.001\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022826\n\t\tand m.unit_concept_id =     8838\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.001\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022826\n\tand unit_concept_id =     8838\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022826 (MICROALBUMIN/CREATININE [RATIO] IN URINE) and UNIT_CONCEPT_ID     8838 (MICROGRAM PER MILLIGRAM), the number and percent of records that have a value less than      0.001.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022826","UNIT_CONCEPT_ID":"    8838","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1922,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.570"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.910509 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022826\nunitConceptId =     9075\nplausibleValueLow =      0.001\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022826\n\t\tand m.unit_concept_id =     9075\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.001\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022826\n\tand unit_concept_id =     9075\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022826 (MICROALBUMIN/CREATININE [RATIO] IN URINE) and UNIT_CONCEPT_ID     9075 (MILLIGRAM PER MILLIMOLE OF CREATININE), the number and percent of records that have a value less than      0.001.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022826","UNIT_CONCEPT_ID":"    9075","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1923,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.571"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.571434 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022914\nunitConceptId =     8763\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022914\n\t\tand m.unit_concept_id =     8763\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022914\n\tand unit_concept_id =     8763\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022914 (CANCER AG 19-9 [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8763 (UNIT PER MILLILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022914","UNIT_CONCEPT_ID":"    8763","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1924,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.572"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.766543 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022914\nunitConceptId =     8810\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022914\n\t\tand m.unit_concept_id =     8810\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022914\n\tand unit_concept_id =     8810\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022914 (CANCER AG 19-9 [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8810 (KILOUNIT PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022914","UNIT_CONCEPT_ID":"    8810","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1925,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.573"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.427281 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022914\nunitConceptId =     8980\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022914\n\t\tand m.unit_concept_id =     8980\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022914\n\tand unit_concept_id =     8980\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022914 (CANCER AG 19-9 [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8980 (ARBITRARY UNIT PER MILLILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022914","UNIT_CONCEPT_ID":"    8980","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1926,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.574"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.735199 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022914\nunitConceptId =     8985\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022914\n\t\tand m.unit_concept_id =     8985\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022914\n\tand unit_concept_id =     8985\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022914 (CANCER AG 19-9 [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8985 (INTERNATIONAL UNIT PER MILLILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022914","UNIT_CONCEPT_ID":"    8985","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1927,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.575"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.903393 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023017\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023017\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023017\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023017 (IRON/TRANSFERRIN [MASS RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023017","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1928,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.576"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.820614 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023103\nunitConceptId =     8753\nplausibleValueLow =      3.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023103\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      3.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023103\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023103 (POTASSIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      3.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023103","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1929,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.577"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.752310 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023103\nunitConceptId =     9557\nplausibleValueLow =      3.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023103\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      3.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023103\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023103 (POTASSIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than      3.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023103","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1930,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.578"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.650365 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023103\nunitConceptId =     9573\nplausibleValueLow =      3.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023103\n\t\tand m.unit_concept_id =     9573\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      3.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023103\n\tand unit_concept_id =     9573\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023103 (POTASSIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9573 (MILLIMOLE), the number and percent of records that have a value less than      3.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023103","UNIT_CONCEPT_ID":"    9573","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1931,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.579"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.635190 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023314\nunitConceptId =     8554\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023314\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023314\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023314 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023314","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1932,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.580"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.940904 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023314\nunitConceptId = 44777604\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023314\n\t\tand m.unit_concept_id = 44777604\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023314\n\tand unit_concept_id = 44777604\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023314 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID 44777604 (LITER PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023314","UNIT_CONCEPT_ID":"44777604","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1933,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.581"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.097715 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023351\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023351\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023351\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023351 (EUROPEAN HOUSE DUST MITE IGE AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023351","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1934,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.582"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.851404 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023351\nunitConceptId =     8810\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023351\n\t\tand m.unit_concept_id =     8810\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023351\n\tand unit_concept_id =     8810\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023351 (EUROPEAN HOUSE DUST MITE IGE AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8810 (KILOUNIT PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023351","UNIT_CONCEPT_ID":"    8810","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1935,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.583"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.619477 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023351\nunitConceptId =     8848\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023351\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023351\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023351 (EUROPEAN HOUSE DUST MITE IGE AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023351","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1936,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.584"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.848685 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023361\nunitConceptId =     8748\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023361\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023361\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023361 (FIBRIN D-DIMER [UNITS/VOLUME] IN PLATELET POOR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023361","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1937,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.585"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.918440 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023361\nunitConceptId =     8751\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023361\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023361\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023361 (FIBRIN D-DIMER [UNITS/VOLUME] IN PLATELET POOR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023361","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1938,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.586"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.079291 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023361\nunitConceptId =     8842\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023361\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023361\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023361 (FIBRIN D-DIMER [UNITS/VOLUME] IN PLATELET POOR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023361","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1939,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.587"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.499374 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023361\nunitConceptId =     8859\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023361\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023361\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023361 (FIBRIN D-DIMER [UNITS/VOLUME] IN PLATELET POOR PLASMA) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023361","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1940,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.588"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.717678 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023420\nunitConceptId =     8985\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023420\n\t\tand m.unit_concept_id =     8985\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023420\n\tand unit_concept_id =     8985\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023420 (DNA DOUBLE STRAND AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8985 (INTERNATIONAL UNIT PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023420","UNIT_CONCEPT_ID":"    8985","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1941,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.589"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.235801 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023465\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023465\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023465\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023465 (GAMMA GLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023465","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1942,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.590"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.651390 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023465\nunitConceptId =     8636\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023465\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023465\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023465 (GAMMA GLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023465","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1943,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.591"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.765521 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023465\nunitConceptId =     8713\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023465\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023465\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023465 (GAMMA GLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023465","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1944,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.592"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.886170 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023520\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023520\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023520\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023520 (RETICULOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023520","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1945,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.593"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.934566 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023520\nunitConceptId =     8848\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023520\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023520\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023520 (RETICULOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023520","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1946,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.594"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.588183 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023520\nunitConceptId =     8961\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023520\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023520\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023520 (RETICULOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023520","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1947,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.595"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.557914 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023599\nunitConceptId =     8583\nplausibleValueLow =     70.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023599\n\t\tand m.unit_concept_id =     8583\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     70.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023599\n\tand unit_concept_id =     8583\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023599 (MCV [ENTITIC VOLUME] BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8583 (FEMTOLITER), the number and percent of records that have a value less than     70.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023599","UNIT_CONCEPT_ID":"    8583","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1948,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.596"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.420004 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023643\nunitConceptId =     8816\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023643\n\t\tand m.unit_concept_id =     8816\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023643\n\tand unit_concept_id =     8816\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023643 (BLASTS/100 LEUKOCYTES IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8816 (MILLION PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023643","UNIT_CONCEPT_ID":"    8816","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1949,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.597"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.788285 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023643\nunitConceptId =     8848\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023643\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023643\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023643 (BLASTS/100 LEUKOCYTES IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023643","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1950,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.598"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.719793 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023694\nunitConceptId =     8647\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023694\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023694\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023694 (LEUKOCYTES [#/VOLUME] IN CEREBRAL SPINAL FLUID BY MANUAL COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023694","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1951,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.599"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.671177 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023694\nunitConceptId =     8785\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023694\n\t\tand m.unit_concept_id =     8785\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023694\n\tand unit_concept_id =     8785\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023694 (LEUKOCYTES [#/VOLUME] IN CEREBRAL SPINAL FLUID BY MANUAL COUNT) and UNIT_CONCEPT_ID     8785 (PER CUBIC MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023694","UNIT_CONCEPT_ID":"    8785","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1952,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.600"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.887900 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019900\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019900\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019900\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019900 (CHOLESTEROL [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019900","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1953,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.601"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.553398 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024128\nunitConceptId =     8713\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024128\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024128\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024128 (BILIRUBIN.TOTAL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024128","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1954,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.602"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.415080 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024128\nunitConceptId =     8749\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024128\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024128\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024128 (BILIRUBIN.TOTAL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024128","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1955,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.603"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.434700 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024128\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024128\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024128\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024128 (BILIRUBIN.TOTAL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024128","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1956,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.604"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.020085 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024128\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024128\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024128\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024128 (BILIRUBIN.TOTAL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024128","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1957,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.605"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":20981,"EXECUTION_TIME":"1.787753 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024171\nunitConceptId =     8541\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024171\n\t\tand m.unit_concept_id =     8541\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024171\n\tand unit_concept_id =     8541\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024171 (RESPIRATORY RATE) and UNIT_CONCEPT_ID     8541 (PER MINUTE), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024171","UNIT_CONCEPT_ID":"    8541","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1958,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.606"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.188219 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024171\nunitConceptId =     9211\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024171\n\t\tand m.unit_concept_id =     9211\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024171\n\tand unit_concept_id =     9211\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024171 (RESPIRATORY RATE) and UNIT_CONCEPT_ID     9211 (MINUTE), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024171","UNIT_CONCEPT_ID":"    9211","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1959,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.607"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.971287 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024250\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024250\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024250\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024250 (CALCIUM.IONIZED [MASS/VOLUME] IN SERUM OR PLASMA BY ION-SELECTIVE MEMBRANE ELECTRODE (ISE)) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024250","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1960,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.608"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.650223 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024250\nunitConceptId =     8840\nplausibleValueLow =      4.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024250\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      4.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024250\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024250 (CALCIUM.IONIZED [MASS/VOLUME] IN SERUM OR PLASMA BY ION-SELECTIVE MEMBRANE ELECTRODE (ISE)) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      4.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024250","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1961,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.609"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.004229 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024354\nunitConceptId =     8876\nplausibleValueLow =     20.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024354\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     20.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024354\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024354 (OXYGEN [PARTIAL PRESSURE] IN VENOUS BLOOD) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     20.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024354","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1962,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.610"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.987802 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024386\nunitConceptId =     8583\nplausibleValueLow =      7.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024386\n\t\tand m.unit_concept_id =     8583\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      7.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024386\n\tand unit_concept_id =     8583\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024386 (PLATELET MEAN VOLUME [ENTITIC VOLUME] IN BLOOD BY REES-ECKER) and UNIT_CONCEPT_ID     8583 (FEMTOLITER), the number and percent of records that have a value less than      7.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024386","UNIT_CONCEPT_ID":"    8583","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1963,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.611"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.750297 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024561\nunitConceptId =     8636\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024561\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024561\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024561 (ALBUMIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024561","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1964,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.612"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.772895 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024561\nunitConceptId =     8713\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024561\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024561\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024561 (ALBUMIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024561","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1965,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.613"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.810088 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024561\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024561\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024561\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024561 (ALBUMIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024561","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1966,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.614"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.533759 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024561\nunitConceptId =     8840\nplausibleValueLow =   1000.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024561\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <   1000.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024561\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024561 (ALBUMIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than   1000.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024561","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1967,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.615"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.789152 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024641\nunitConceptId =     8753\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024641\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024641\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024641 (UREA NITROGEN [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024641","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1968,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.616"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.025006 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024641\nunitConceptId =     8840\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024641\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024641\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024641 (UREA NITROGEN [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024641","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1969,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.617"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.322512 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024653\nunitConceptId =     8519\nplausibleValueLow =      0.001\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024653\n\t\tand m.unit_concept_id =     8519\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.001\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024653\n\tand unit_concept_id =     8519\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024653 (FEV1) and UNIT_CONCEPT_ID     8519 (LITER), the number and percent of records that have a value less than      0.001.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024653","UNIT_CONCEPT_ID":"    8519","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1970,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.618"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.901341 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024653\nunitConceptId =     8523\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024653\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024653\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024653 (FEV1) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024653","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1971,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.619"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.665703 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024653\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024653\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024653\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024653 (FEV1) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024653","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1972,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.620"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.941303 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024653\nunitConceptId =     8587\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024653\n\t\tand m.unit_concept_id =     8587\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024653\n\tand unit_concept_id =     8587\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024653 (FEV1) and UNIT_CONCEPT_ID     8587 (MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024653","UNIT_CONCEPT_ID":"    8587","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1973,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.621"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.104473 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024653\nunitConceptId =     8698\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024653\n\t\tand m.unit_concept_id =     8698\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024653\n\tand unit_concept_id =     8698\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024653 (FEV1) and UNIT_CONCEPT_ID     8698 (LITER PER MINUTE), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024653","UNIT_CONCEPT_ID":"    8698","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1974,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.622"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.687142 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024653\nunitConceptId =     9330\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024653\n\t\tand m.unit_concept_id =     9330\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024653\n\tand unit_concept_id =     9330\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024653 (FEV1) and UNIT_CONCEPT_ID     9330 (INCH (US)), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024653","UNIT_CONCEPT_ID":"    9330","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1975,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.623"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.703999 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024731\nunitConceptId =     8583\nplausibleValueLow =     70.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024731\n\t\tand m.unit_concept_id =     8583\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     70.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024731\n\tand unit_concept_id =     8583\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024731 (MCV [ENTITIC VOLUME]) and UNIT_CONCEPT_ID     8583 (FEMTOLITER), the number and percent of records that have a value less than     70.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024731","UNIT_CONCEPT_ID":"    8583","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1976,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.624"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.709308 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024762\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024762\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024762\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024762 (GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA --8 HOURS FASTING) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024762","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1977,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.625"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.550306 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024763\nunitConceptId =     8923\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024763\n\t\tand m.unit_concept_id =     8923\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024763\n\tand unit_concept_id =     8923\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024763 (RHEUMATOID FACTOR [UNITS/VOLUME] IN SERUM BY NEPHELOMETRY) and UNIT_CONCEPT_ID     8923 (INTERNATIONAL UNIT PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024763","UNIT_CONCEPT_ID":"    8923","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1978,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.626"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.850943 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024763\nunitConceptId =     8985\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024763\n\t\tand m.unit_concept_id =     8985\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024763\n\tand unit_concept_id =     8985\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024763 (RHEUMATOID FACTOR [UNITS/VOLUME] IN SERUM BY NEPHELOMETRY) and UNIT_CONCEPT_ID     8985 (INTERNATIONAL UNIT PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024763","UNIT_CONCEPT_ID":"    8985","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1979,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.627"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.440135 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024929\nunitConceptId =     8647\nplausibleValueLow = 100000.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024929\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number < 100000.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024929\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024929 (PLATELETS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value less than 100000.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024929","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1980,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.628"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.849658 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024929\nunitConceptId =     8785\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024929\n\t\tand m.unit_concept_id =     8785\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024929\n\tand unit_concept_id =     8785\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024929 (PLATELETS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8785 (PER CUBIC MILLIMETER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024929","UNIT_CONCEPT_ID":"    8785","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1981,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.629"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.640948 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024929\nunitConceptId =     8816\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024929\n\t\tand m.unit_concept_id =     8816\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024929\n\tand unit_concept_id =     8816\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024929 (PLATELETS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8816 (MILLION PER MILLILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024929","UNIT_CONCEPT_ID":"    8816","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1982,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.630"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.857059 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024929\nunitConceptId =     8848\nplausibleValueLow =    100.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024929\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    100.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024929\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024929 (PLATELETS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than    100.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024929","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1983,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.631"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.681326 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024929\nunitConceptId =     8961\nplausibleValueLow =    100.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024929\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    100.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024929\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024929 (PLATELETS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value less than    100.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024929","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1984,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.632"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.004588 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024929\nunitConceptId =     9444\nplausibleValueLow =    100.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024929\n\t\tand m.unit_concept_id =     9444\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    100.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024929\n\tand unit_concept_id =     9444\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024929 (PLATELETS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9444 (BILLION PER LITER), the number and percent of records that have a value less than    100.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024929","UNIT_CONCEPT_ID":"    9444","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1985,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.633"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.685661 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025285\nunitConceptId =     8725\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025285\n\t\tand m.unit_concept_id =     8725\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025285\n\tand unit_concept_id =     8725\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025285 (ESTRADIOL (E2) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8725 (NANOGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025285","UNIT_CONCEPT_ID":"    8725","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1986,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.634"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.868674 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025285\nunitConceptId =     8729\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025285\n\t\tand m.unit_concept_id =     8729\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025285\n\tand unit_concept_id =     8729\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025285 (ESTRADIOL (E2) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8729 (PICOMOLE PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025285","UNIT_CONCEPT_ID":"    8729","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1987,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.635"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.554156 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025285\nunitConceptId =     8817\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025285\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025285\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025285 (ESTRADIOL (E2) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025285","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1988,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.636"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.703127 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025285\nunitConceptId =     8845\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025285\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025285\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025285 (ESTRADIOL (E2) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025285","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1989,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.637"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.872365 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025315\nunitConceptId =     8504\nplausibleValueLow =   2000.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025315\n\t\tand m.unit_concept_id =     8504\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <   2000.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025315\n\tand unit_concept_id =     8504\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025315 (BODY WEIGHT) and UNIT_CONCEPT_ID     8504 (GRAM), the number and percent of records that have a value less than   2000.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025315","UNIT_CONCEPT_ID":"    8504","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1990,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.638"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.440108 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025315\nunitConceptId =     8576\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025315\n\t\tand m.unit_concept_id =     8576\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025315\n\tand unit_concept_id =     8576\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025315 (BODY WEIGHT) and UNIT_CONCEPT_ID     8576 (MILLIGRAM), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025315","UNIT_CONCEPT_ID":"    8576","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1991,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.639"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.119825 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025315\nunitConceptId =     8739\nplausibleValueLow =      4.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025315\n\t\tand m.unit_concept_id =     8739\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      4.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025315\n\tand unit_concept_id =     8739\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025315 (BODY WEIGHT) and UNIT_CONCEPT_ID     8739 (POUND (US)), the number and percent of records that have a value less than      4.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025315","UNIT_CONCEPT_ID":"    8739","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1992,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.640"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.801488 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025315\nunitConceptId =     9373\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025315\n\t\tand m.unit_concept_id =     9373\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025315\n\tand unit_concept_id =     9373\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025315 (BODY WEIGHT) and UNIT_CONCEPT_ID     9373 (OUNCE (AVOIRDUPOIS)), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025315","UNIT_CONCEPT_ID":"    9373","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1993,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.641"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":127,"EXECUTION_TIME":"2.257978 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025315\nunitConceptId =     9529\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025315\n\t\tand m.unit_concept_id =     9529\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025315\n\tand unit_concept_id =     9529\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025315 (BODY WEIGHT) and UNIT_CONCEPT_ID     9529 (KILOGRAM), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025315","UNIT_CONCEPT_ID":"    9529","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1994,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.642"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.015322 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025455\nunitConceptId =     8842\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025455\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025455\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025455 (ESTRIOL (E3).UNCONJUGATED [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025455","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1995,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.643"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.949890 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025673\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025673\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025673\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025673 (GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA --2 HOURS POST 75 G GLUCOSE PO) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025673","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1996,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.644"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.072813 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025696\nunitConceptId =     8753\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025696\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025696\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025696 (LITHIUM [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025696","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1997,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.645"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.842824 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025696\nunitConceptId =     8859\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025696\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025696\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025696 (LITHIUM [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025696","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1998,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.646"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.771690 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025696\nunitConceptId =     9557\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025696\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025696\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025696 (LITHIUM [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025696","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":1999,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.647"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":80,"EXECUTION_TIME":"1.720134 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026250\nunitConceptId =     8842\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026250\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026250\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026250 (TACROLIMUS [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026250","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2000,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.648"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.086927 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2001,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.649"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.323611 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     8583\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     8583\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     8583\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8583 (FEMTOLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    8583","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2002,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.650"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.433589 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     8587\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     8587\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     8587\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8587 (MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    8587","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2003,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.651"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.129609 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     8588\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     8588\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     8588\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8588 (MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    8588","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2004,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.652"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.696615 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     8647\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2005,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.653"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.700590 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     8686\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     8686\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     8686\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8686 (CUBIC MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    8686","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2006,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.654"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.475310 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     8713\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2007,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.655"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.739535 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     8786\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     8786\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     8786\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8786 (PER HIGH POWER FIELD), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    8786","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2008,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.656"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.734363 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     8815\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     8815\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     8815\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8815 (MILLION PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    8815","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2009,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.657"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.866191 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     8888\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     8888\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     8888\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8888 (CELLS PER CUBIC MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    8888","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2010,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.658"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.957274 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     9665\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     9665\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     9665\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9665 (MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    9665","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2011,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.659"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.988483 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId = 45744812\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id = 45744812\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id = 45744812\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID 45744812 (CELLS), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"45744812","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2012,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.660"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.336053 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023884\nunitConceptId =     8554\nplausibleValueLow =     18.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023884\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     18.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023884\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023884 (CHOLESTEROL IN HDL/CHOLESTEROL.TOTAL [MASS RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than     18.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023884","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2013,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.661"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.740695 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026782\nunitConceptId =     8605\nplausibleValueLow =    100.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026782\n\t\tand m.unit_concept_id =     8605\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    100.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026782\n\tand unit_concept_id =     8605\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026782 (OSMOLALITY OF URINE) and UNIT_CONCEPT_ID     8605 (MILLIOSMOLE), the number and percent of records that have a value less than    100.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026782","UNIT_CONCEPT_ID":"    8605","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2014,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.662"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":138,"EXECUTION_TIME":"1.711415 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026782\nunitConceptId =     8862\nplausibleValueLow =    100.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026782\n\t\tand m.unit_concept_id =     8862\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    100.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026782\n\tand unit_concept_id =     8862\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026782 (OSMOLALITY OF URINE) and UNIT_CONCEPT_ID     8862 (MILLIOSMOLE PER KILOGRAM), the number and percent of records that have a value less than    100.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026782","UNIT_CONCEPT_ID":"    8862","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2015,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.663"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.434060 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026782\nunitConceptId =     9591\nplausibleValueLow =    100.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026782\n\t\tand m.unit_concept_id =     9591\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    100.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026782\n\tand unit_concept_id =     9591\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026782 (OSMOLALITY OF URINE) and UNIT_CONCEPT_ID     9591 (MILLIOSMOLE PER LITER), the number and percent of records that have a value less than    100.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026782","UNIT_CONCEPT_ID":"    9591","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2016,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.664"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.380280 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026910\nunitConceptId =     8510\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026910\n\t\tand m.unit_concept_id =     8510\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026910\n\tand unit_concept_id =     8510\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026910 (GAMMA GLUTAMYL TRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8510 (UNIT), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026910","UNIT_CONCEPT_ID":"    8510","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2017,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.665"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.082014 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026910\nunitConceptId =     8645\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026910\n\t\tand m.unit_concept_id =     8645\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026910\n\tand unit_concept_id =     8645\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026910 (GAMMA GLUTAMYL TRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8645 (UNIT PER LITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026910","UNIT_CONCEPT_ID":"    8645","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2018,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.666"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.825310 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026910\nunitConceptId =     8859\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026910\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026910\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026910 (GAMMA GLUTAMYL TRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026910","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2019,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.667"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.352445 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026910\nunitConceptId =     8923\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026910\n\t\tand m.unit_concept_id =     8923\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026910\n\tand unit_concept_id =     8923\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026910 (GAMMA GLUTAMYL TRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8923 (INTERNATIONAL UNIT PER LITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026910","UNIT_CONCEPT_ID":"    8923","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2020,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.668"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.457324 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026925\nunitConceptId =     8729\nplausibleValueLow =      3.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026925\n\t\tand m.unit_concept_id =     8729\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      3.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026925\n\tand unit_concept_id =     8729\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026925 (TRIIODOTHYRONINE (T3) FREE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8729 (PICOMOLE PER LITER), the number and percent of records that have a value less than      3.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026925","UNIT_CONCEPT_ID":"    8729","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2021,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.669"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.523500 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026925\nunitConceptId =     8820\nplausibleValueLow =    600.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026925\n\t\tand m.unit_concept_id =     8820\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    600.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026925\n\tand unit_concept_id =     8820\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026925 (TRIIODOTHYRONINE (T3) FREE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8820 (PICOGRAM PER DECILITER), the number and percent of records that have a value less than    600.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026925","UNIT_CONCEPT_ID":"    8820","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2022,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.670"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.633036 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026925\nunitConceptId =     8845\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026925\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026925\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026925 (TRIIODOTHYRONINE (T3) FREE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026925","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2023,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.671"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.785884 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027035\nunitConceptId =     8723\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027035\n\t\tand m.unit_concept_id =     8723\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027035\n\tand unit_concept_id =     8723\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027035 (ALBUMIN [MASS/TIME] IN 24 HOUR URINE) and UNIT_CONCEPT_ID     8723 (MILLIGRAM PER GRAM), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027035","UNIT_CONCEPT_ID":"    8723","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2024,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.672"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.203813 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027035\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027035\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027035\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027035 (ALBUMIN [MASS/TIME] IN 24 HOUR URINE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027035","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2025,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.673"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.656269 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027035\nunitConceptId =     8859\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027035\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027035\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027035 (ALBUMIN [MASS/TIME] IN 24 HOUR URINE) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027035","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2026,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.674"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.741719 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027035\nunitConceptId =     8909\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027035\n\t\tand m.unit_concept_id =     8909\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027035\n\tand unit_concept_id =     8909\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027035 (ALBUMIN [MASS/TIME] IN 24 HOUR URINE) and UNIT_CONCEPT_ID     8909 (MILLIGRAM PER 24 HOURS), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027035","UNIT_CONCEPT_ID":"    8909","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2027,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.675"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.902627 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026453\nunitConceptId =     8840\nplausibleValueLow =      6.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026453\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      6.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026453\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026453 (CHOLESTEROL IN IDL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      6.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026453","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2028,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.676"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.368815 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027114\nunitConceptId =     8713\nplausibleValueLow =      2.600\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027114\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.600\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027114\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027114 (CHOLESTEROL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      2.600.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027114","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2029,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.677"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.830713 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027114\nunitConceptId =     8840\nplausibleValueLow =     50.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027114\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     50.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027114\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027114 (CHOLESTEROL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     50.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027114","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2030,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.678"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.723909 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027144\nunitConceptId =     8842\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027144\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027144\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027144 (PROGESTERONE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027144","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2031,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.679"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.948974 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027238\nunitConceptId =     8985\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027238\n\t\tand m.unit_concept_id =     8985\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027238\n\tand unit_concept_id =     8985\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027238 (THYROPEROXIDASE AB [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8985 (INTERNATIONAL UNIT PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027238","UNIT_CONCEPT_ID":"    8985","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2032,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.680"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.966808 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027273\nunitConceptId =     8753\nplausibleValueLow =     18.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027273\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     18.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027273\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027273 (BICARBONATE [MOLES/VOLUME] IN VENOUS BLOOD) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than     18.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027273","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2033,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.681"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.804434 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027273\nunitConceptId =     9557\nplausibleValueLow =     18.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027273\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     18.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027273\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027273 (BICARBONATE [MOLES/VOLUME] IN VENOUS BLOOD) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than     18.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027273","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2034,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.682"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.949041 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027361\nunitConceptId =     8842\nplausibleValueLow =     12.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027361\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     12.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027361\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027361 (CHOLECALCIFEROL (VIT D3) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than     12.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027361","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2035,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.683"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.618583 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027361\nunitConceptId =     8845\nplausibleValueLow =     23.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027361\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     23.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027361\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027361 (CHOLECALCIFEROL (VIT D3) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value less than     23.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027361","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2036,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.684"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.732689 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027457\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027457\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027457\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027457 (GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA --3 HOURS POST 100 G GLUCOSE PO) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027457","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2037,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.685"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.935662 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027597\nunitConceptId =     8713\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027597\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027597\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027597 (BILIRUBIN.DIRECT [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027597","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2038,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.686"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.610510 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027597\nunitConceptId =     8749\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027597\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027597\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027597 (BILIRUBIN.DIRECT [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027597","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2039,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.687"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.634628 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027597\nunitConceptId =     8753\nplausibleValueLow =      4.200\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027597\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      4.200\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027597\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027597 (BILIRUBIN.DIRECT [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      4.200.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027597","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2040,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.688"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.919077 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027597\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027597\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027597\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027597 (BILIRUBIN.DIRECT [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027597","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2041,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.689"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.897620 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027651\nunitConceptId =     8647\nplausibleValueLow =      7.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027651\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      7.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027651\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027651 (BASOPHILS [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value less than      7.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027651","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2042,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.690"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.850757 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027651\nunitConceptId =     8848\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027651\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027651\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027651 (BASOPHILS [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027651","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2043,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.691"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.134201 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027651\nunitConceptId =     8961\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027651\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027651\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027651 (BASOPHILS [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027651","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2044,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.692"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.732180 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027801\nunitConceptId =     8876\nplausibleValueLow =     30.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027801\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     30.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027801\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027801 (OXYGEN [PARTIAL PRESSURE] IN ARTERIAL BLOOD) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     30.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027801","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2045,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.693"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.750064 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027114\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027114\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027114\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027114 (CHOLESTEROL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027114","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2046,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.694"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.540915 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027970\nunitConceptId =     8636\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027970\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027970\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027970 (GLOBULIN [MASS/VOLUME] IN SERUM BY CALCULATION) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027970","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2047,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.695"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.649751 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027970\nunitConceptId =     8713\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027970\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027970\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027970 (GLOBULIN [MASS/VOLUME] IN SERUM BY CALCULATION) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027970","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2048,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.696"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.818489 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028108\nunitConceptId =     8554\nplausibleValueLow =     25.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028108\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     25.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028108\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028108 (SEGMENTED NEUTROPHILS/100 LEUKOCYTES IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than     25.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028108","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2049,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.697"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.717417 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028286\nunitConceptId =     8554\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028286\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028286\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028286 (ALBUMIN [MASS/VOLUME] IN SERUM OR PLASMA BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028286","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2050,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.698"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.854399 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028286\nunitConceptId =     8636\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028286\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028286\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028286 (ALBUMIN [MASS/VOLUME] IN SERUM OR PLASMA BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028286","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2051,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.699"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.733908 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028286\nunitConceptId =     8713\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028286\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028286\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028286 (ALBUMIN [MASS/VOLUME] IN SERUM OR PLASMA BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028286","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2052,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.700"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.480724 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028286\nunitConceptId =     8751\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028286\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028286\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028286 (ALBUMIN [MASS/VOLUME] IN SERUM OR PLASMA BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028286","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2053,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.701"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.432769 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027939\nunitConceptId =     8523\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027939\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027939\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027939 (CHOLESTEROL IN HDL/CHOLESTEROL IN LDL [MASS RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027939","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2054,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.702"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.684516 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028288\nunitConceptId =     8840\nplausibleValueLow =     45.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028288\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     45.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028288\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028288 (CHOLESTEROL IN LDL [MASS/VOLUME] IN SERUM OR PLASMA BY CALCULATION) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     45.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028288","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2055,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.703"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.158236 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028288\nunitConceptId =     8817\nplausibleValueLow =     51.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028288\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     51.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028288\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028288 (CHOLESTEROL IN LDL [MASS/VOLUME] IN SERUM OR PLASMA BY CALCULATION) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value less than     51.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028288","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2056,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.704"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.101984 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028288\nunitConceptId =     8736\nplausibleValueLow =     35.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028288\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     35.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028288\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028288 (CHOLESTEROL IN LDL [MASS/VOLUME] IN SERUM OR PLASMA BY CALCULATION) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value less than     35.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028288","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2057,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.705"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.600791 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028437\nunitConceptId =     8840\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028437\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028437\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028437 (CHOLESTEROL IN LDL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028437","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2058,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.706"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.480834 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028437\nunitConceptId =     8753\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028437\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028437\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028437 (CHOLESTEROL IN LDL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028437","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2059,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.707"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.618866 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028615\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028615\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028615\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028615 (EOSINOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028615","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2060,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.708"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.057696 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028615\nunitConceptId =     8647\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028615\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028615\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028615 (EOSINOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028615","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2061,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.709"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.703529 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028615\nunitConceptId =     8816\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028615\n\t\tand m.unit_concept_id =     8816\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028615\n\tand unit_concept_id =     8816\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028615 (EOSINOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8816 (MILLION PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028615","UNIT_CONCEPT_ID":"    8816","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2062,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.710"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.734423 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028615\nunitConceptId =     8848\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028615\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028615\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028615 (EOSINOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028615","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2063,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.711"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.336176 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028615\nunitConceptId =     8961\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028615\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028615\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028615 (EOSINOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028615","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2064,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.712"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.787859 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028615\nunitConceptId =     9254\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028615\n\t\tand m.unit_concept_id =     9254\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028615\n\tand unit_concept_id =     9254\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028615 (EOSINOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9254 (PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028615","UNIT_CONCEPT_ID":"    9254","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2065,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.713"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.640459 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028615\nunitConceptId =     9436\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028615\n\t\tand m.unit_concept_id =     9436\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028615\n\tand unit_concept_id =     9436\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028615 (EOSINOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9436 (THOUSAND PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028615","UNIT_CONCEPT_ID":"    9436","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2066,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.714"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.833438 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028615\nunitConceptId =     9444\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028615\n\t\tand m.unit_concept_id =     9444\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028615\n\tand unit_concept_id =     9444\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028615 (EOSINOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9444 (BILLION PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028615","UNIT_CONCEPT_ID":"    9444","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2067,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.715"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.669902 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028615\nunitConceptId = 44777599\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028615\n\t\tand m.unit_concept_id = 44777599\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028615\n\tand unit_concept_id = 44777599\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028615 (EOSINOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID 44777599 (GRAM OF TOTAL PROTEIN), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028615","UNIT_CONCEPT_ID":"44777599","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2068,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.716"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.654813 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3029187\nunitConceptId =     8817\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3029187\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3029187\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3029187 (NATRIURETIC PEPTIDE.B PROHORMONE N-TERMINAL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3029187","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2069,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.717"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.733438 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3029187\nunitConceptId =     8842\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3029187\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3029187\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3029187 (NATRIURETIC PEPTIDE.B PROHORMONE N-TERMINAL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3029187","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2070,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.718"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":142,"EXECUTION_TIME":"1.725124 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3029187\nunitConceptId =     8845\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3029187\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3029187\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3029187 (NATRIURETIC PEPTIDE.B PROHORMONE N-TERMINAL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3029187","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2071,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.719"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.770744 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3030366\nunitConceptId =     8751\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3030366\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3030366\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3030366 (CYSTATIN C [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3030366","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2072,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.720"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.726794 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3030367\nunitConceptId =     8763\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3030367\n\t\tand m.unit_concept_id =     8763\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3030367\n\tand unit_concept_id =     8763\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3030367 (CYCLIC CITRULLINATED PEPTIDE IGG AB [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8763 (UNIT PER MILLILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3030367","UNIT_CONCEPT_ID":"    8763","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2073,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.721"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.739605 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3032080\nunitConceptId =     8510\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3032080\n\t\tand m.unit_concept_id =     8510\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3032080\n\tand unit_concept_id =     8510\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3032080 (INR IN BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8510 (UNIT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3032080","UNIT_CONCEPT_ID":"    8510","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2074,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.722"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.737461 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3032080\nunitConceptId =     8511\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3032080\n\t\tand m.unit_concept_id =     8511\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3032080\n\tand unit_concept_id =     8511\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3032080 (INR IN BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8511 (WEEK), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3032080","UNIT_CONCEPT_ID":"    8511","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2075,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.723"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.940682 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3032080\nunitConceptId =     8519\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3032080\n\t\tand m.unit_concept_id =     8519\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3032080\n\tand unit_concept_id =     8519\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3032080 (INR IN BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8519 (LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3032080","UNIT_CONCEPT_ID":"    8519","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2076,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.724"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.770492 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3032080\nunitConceptId =     8523\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3032080\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3032080\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3032080 (INR IN BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3032080","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2077,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.725"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.550343 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3032080\nunitConceptId =     8528\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3032080\n\t\tand m.unit_concept_id =     8528\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3032080\n\tand unit_concept_id =     8528\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3032080 (INR IN BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8528 (YEAR), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3032080","UNIT_CONCEPT_ID":"    8528","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2078,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.726"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.017917 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3032080\nunitConceptId =     9212\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3032080\n\t\tand m.unit_concept_id =     9212\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3032080\n\tand unit_concept_id =     9212\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3032080 (INR IN BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     9212 (SECOND), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3032080","UNIT_CONCEPT_ID":"    9212","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2079,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.727"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.739328 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3032080\nunitConceptId =     9580\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3032080\n\t\tand m.unit_concept_id =     9580\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3032080\n\tand unit_concept_id =     9580\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3032080 (INR IN BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     9580 (MONTH), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3032080","UNIT_CONCEPT_ID":"    9580","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2080,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.728"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.018201 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3032567\nunitConceptId =     8985\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3032567\n\t\tand m.unit_concept_id =     8985\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3032567\n\tand unit_concept_id =     8985\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3032567 (HEPATITIS B VIRUS DNA [UNITS/VOLUME] (VIRAL LOAD) IN SERUM OR PLASMA BY NAA WITH PROBE DETECTION) and UNIT_CONCEPT_ID     8985 (INTERNATIONAL UNIT PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3032567","UNIT_CONCEPT_ID":"    8985","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2081,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.729"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803161 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3033526\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3033526\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3033526\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3033526 (URATE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3033526","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2082,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.730"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.356215 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3033526\nunitConceptId =     8909\nplausibleValueLow =    200.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3033526\n\t\tand m.unit_concept_id =     8909\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    200.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3033526\n\tand unit_concept_id =     8909\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3033526 (URATE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8909 (MILLIGRAM PER 24 HOURS), the number and percent of records that have a value less than    200.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3033526","UNIT_CONCEPT_ID":"    8909","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2083,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.731"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.540516 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3033543\nunitConceptId =     9648\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3033543\n\t\tand m.unit_concept_id =     9648\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3033543\n\tand unit_concept_id =     9648\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3033543 (SPECIFIC GRAVITY OF URINE) and UNIT_CONCEPT_ID     9648 (UNIFIED ATOMIC MASS UNIT), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3033543","UNIT_CONCEPT_ID":"    9648","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2084,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.732"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.788552 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3033575\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3033575\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3033575\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3033575 (MONOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3033575","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2085,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.733"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.051103 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3033575\nunitConceptId =     8647\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3033575\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3033575\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3033575 (MONOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3033575","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2086,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.734"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.733999 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3033575\nunitConceptId =     8816\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3033575\n\t\tand m.unit_concept_id =     8816\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3033575\n\tand unit_concept_id =     8816\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3033575 (MONOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8816 (MILLION PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3033575","UNIT_CONCEPT_ID":"    8816","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2087,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.735"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.188789 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3033575\nunitConceptId =     8848\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3033575\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3033575\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3033575 (MONOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3033575","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2088,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.736"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.640976 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3033575\nunitConceptId =     8961\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3033575\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3033575\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3033575 (MONOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3033575","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2089,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.737"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.510971 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3033575\nunitConceptId =     9436\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3033575\n\t\tand m.unit_concept_id =     9436\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3033575\n\tand unit_concept_id =     9436\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3033575 (MONOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9436 (THOUSAND PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3033575","UNIT_CONCEPT_ID":"    9436","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2090,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.738"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.827440 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3034107\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3034107\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3034107\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3034107 (MONOCYTES [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3034107","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2091,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.739"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.444767 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3034204\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3034204\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3034204\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3034204 (UREA [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3034204","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2092,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.740"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.467274 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3034426\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3034426\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3034426\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3034426 (PROTHROMBIN TIME (PT)) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3034426","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2093,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.741"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.740178 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3034426\nunitConceptId =     8555\nplausibleValueLow =      3.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3034426\n\t\tand m.unit_concept_id =     8555\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      3.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3034426\n\tand unit_concept_id =     8555\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3034426 (PROTHROMBIN TIME (PT)) and UNIT_CONCEPT_ID     8555 (SECOND), the number and percent of records that have a value less than      3.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3034426","UNIT_CONCEPT_ID":"    8555","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2094,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.742"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.739439 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3034639\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3034639\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3034639\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3034639 (HEMOGLOBIN A1C [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3034639","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2095,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.743"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.154385 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3034639\nunitConceptId =     8713\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3034639\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3034639\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3034639 (HEMOGLOBIN A1C [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3034639","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2096,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.744"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.531380 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3034739\nunitConceptId =     8605\nplausibleValueLow =    220.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3034739\n\t\tand m.unit_concept_id =     8605\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    220.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3034739\n\tand unit_concept_id =     8605\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3034739 (OSMOLALITY OF SERUM OR PLASMA BY CALCULATION) and UNIT_CONCEPT_ID     8605 (MILLIOSMOLE), the number and percent of records that have a value less than    220.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3034739","UNIT_CONCEPT_ID":"    8605","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2097,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.745"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.769723 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3034739\nunitConceptId =     8862\nplausibleValueLow =    220.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3034739\n\t\tand m.unit_concept_id =     8862\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    220.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3034739\n\tand unit_concept_id =     8862\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3034739 (OSMOLALITY OF SERUM OR PLASMA BY CALCULATION) and UNIT_CONCEPT_ID     8862 (MILLIOSMOLE PER KILOGRAM), the number and percent of records that have a value less than    220.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3034739","UNIT_CONCEPT_ID":"    8862","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2098,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.746"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.688809 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3034739\nunitConceptId =     9577\nplausibleValueLow =    220.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3034739\n\t\tand m.unit_concept_id =     9577\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    220.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3034739\n\tand unit_concept_id =     9577\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3034739 (OSMOLALITY OF SERUM OR PLASMA BY CALCULATION) and UNIT_CONCEPT_ID     9577 (MILLIMOLE PER KILOGRAM), the number and percent of records that have a value less than    220.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3034739","UNIT_CONCEPT_ID":"    9577","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2099,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.747"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.692854 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3035941\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3035941\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3035941\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3035941 (MCH [ENTITIC MASS]) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3035941","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2100,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.748"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.778023 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3035941\nunitConceptId =     8564\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3035941\n\t\tand m.unit_concept_id =     8564\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3035941\n\tand unit_concept_id =     8564\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3035941 (MCH [ENTITIC MASS]) and UNIT_CONCEPT_ID     8564 (PICOGRAM), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3035941","UNIT_CONCEPT_ID":"    8564","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2101,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.749"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.634503 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3035995\nunitConceptId =     8645\nplausibleValueLow =     20.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3035995\n\t\tand m.unit_concept_id =     8645\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     20.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3035995\n\tand unit_concept_id =     8645\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3035995 (ALKALINE PHOSPHATASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8645 (UNIT PER LITER), the number and percent of records that have a value less than     20.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3035995","UNIT_CONCEPT_ID":"    8645","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2102,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.750"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.750145 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3035995\nunitConceptId =     8713\nplausibleValueLow =      4.200\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3035995\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      4.200\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3035995\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3035995 (ALKALINE PHOSPHATASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      4.200.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3035995","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2103,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.751"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.466415 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3035995\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3035995\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3035995\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3035995 (ALKALINE PHOSPHATASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3035995","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2104,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.752"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.456289 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3035995\nunitConceptId =     8923\nplausibleValueLow =     20.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3035995\n\t\tand m.unit_concept_id =     8923\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     20.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3035995\n\tand unit_concept_id =     8923\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3035995 (ALKALINE PHOSPHATASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8923 (INTERNATIONAL UNIT PER LITER), the number and percent of records that have a value less than     20.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3035995","UNIT_CONCEPT_ID":"    8923","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2105,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.753"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":71,"EXECUTION_TIME":"1.686753 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3036277\nunitConceptId =     8582\nplausibleValueLow =     20.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3036277\n\t\tand m.unit_concept_id =     8582\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     20.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3036277\n\tand unit_concept_id =     8582\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3036277 (BODY HEIGHT) and UNIT_CONCEPT_ID     8582 (CENTIMETER), the number and percent of records that have a value less than     20.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3036277","UNIT_CONCEPT_ID":"    8582","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2106,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.754"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.972503 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3036277\nunitConceptId =     8588\nplausibleValueLow =  20000.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3036277\n\t\tand m.unit_concept_id =     8588\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <  20000.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3036277\n\tand unit_concept_id =     8588\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3036277 (BODY HEIGHT) and UNIT_CONCEPT_ID     8588 (MILLIMETER), the number and percent of records that have a value less than  20000.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3036277","UNIT_CONCEPT_ID":"    8588","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2107,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.755"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":71,"EXECUTION_TIME":"1.751011 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3036277\nunitConceptId =     9327\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3036277\n\t\tand m.unit_concept_id =     9327\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3036277\n\tand unit_concept_id =     9327\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3036277 (BODY HEIGHT) and UNIT_CONCEPT_ID     9327 (INCH (INTERNATIONAL)), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3036277","UNIT_CONCEPT_ID":"    9327","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2108,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.756"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.072130 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3036277\nunitConceptId =     9330\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3036277\n\t\tand m.unit_concept_id =     9330\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3036277\n\tand unit_concept_id =     9330\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3036277 (BODY HEIGHT) and UNIT_CONCEPT_ID     9330 (INCH (US)), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3036277","UNIT_CONCEPT_ID":"    9330","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2109,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.757"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.734649 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3036277\nunitConceptId =     9546\nplausibleValueLow =      0.200\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3036277\n\t\tand m.unit_concept_id =     9546\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.200\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3036277\n\tand unit_concept_id =     9546\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3036277 (BODY HEIGHT) and UNIT_CONCEPT_ID     9546 (METER), the number and percent of records that have a value less than      0.200.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3036277","UNIT_CONCEPT_ID":"    9546","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2110,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.758"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.426439 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3036426\nunitConceptId =     8749\nplausibleValueLow =    870.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3036426\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    870.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3036426\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3036426 (CALCIUM.IONIZED [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than    870.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3036426","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2111,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.759"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.778359 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3036426\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3036426\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3036426\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3036426 (CALCIUM.IONIZED [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3036426","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2112,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.760"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.815192 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3036426\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3036426\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3036426\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3036426 (CALCIUM.IONIZED [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3036426","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2113,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.761"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.076101 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3036426\nunitConceptId =     9557\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3036426\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3036426\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3036426 (CALCIUM.IONIZED [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3036426","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2114,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.762"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.873263 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3036535\nunitConceptId =     8842\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3036535\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3036535\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3036535 (THYROGLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3036535","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2115,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.763"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.617034 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3036663\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3036663\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3036663\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3036663 (LYMPHOCYTES/100 LEUKOCYTES IN CEREBRAL SPINAL FLUID BY MANUAL COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3036663","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2116,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.764"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.749475 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3036780\nunitConceptId =     8848\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3036780\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3036780\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3036780 (AMERICAN HOUSE DUST MITE IGE AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3036780","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2117,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.765"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.423218 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3037110\nunitConceptId =     8510\nplausibleValueLow =     50.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3037110\n\t\tand m.unit_concept_id =     8510\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     50.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3037110\n\tand unit_concept_id =     8510\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3037110 (FASTING GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8510 (UNIT), the number and percent of records that have a value less than     50.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3037110","UNIT_CONCEPT_ID":"    8510","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2118,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.766"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.800074 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3037110\nunitConceptId =     8753\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3037110\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3037110\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3037110 (FASTING GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3037110","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2119,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.767"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.530946 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3037110\nunitConceptId =     8840\nplausibleValueLow =     50.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3037110\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     50.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3037110\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3037110 (FASTING GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     50.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3037110","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2120,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.768"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.449337 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3037110\nunitConceptId =     8842\nplausibleValueLow =     50.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3037110\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     50.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3037110\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3037110 (FASTING GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than     50.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3037110","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2121,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.769"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.779016 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3037110\nunitConceptId =     8845\nplausibleValueLow =     50.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3037110\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     50.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3037110\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3037110 (FASTING GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value less than     50.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3037110","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2122,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.770"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.696652 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3037121\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3037121\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3037121\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3037121 (PROTEIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3037121","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2123,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.771"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.451411 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3037121\nunitConceptId =     8713\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3037121\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3037121\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3037121 (PROTEIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3037121","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2124,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.772"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.724624 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3037121\nunitConceptId =     8751\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3037121\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3037121\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3037121 (PROTEIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3037121","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2125,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.773"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.750507 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3037121\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3037121\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3037121\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3037121 (PROTEIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3037121","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2126,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.774"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.802886 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3037121\nunitConceptId =     8909\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3037121\n\t\tand m.unit_concept_id =     8909\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3037121\n\tand unit_concept_id =     8909\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3037121 (PROTEIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8909 (MILLIGRAM PER 24 HOURS), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3037121","UNIT_CONCEPT_ID":"    8909","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2127,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.775"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.503514 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3037187\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3037187\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3037187\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3037187 (FASTING GLUCOSE [MASS/VOLUME] IN VENOUS BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3037187","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2128,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.776"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.402733 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3037511\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3037511\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3037511\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3037511 (LYMPHOCYTES/100 LEUKOCYTES IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3037511","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2129,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.777"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.856879 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3037551\nunitConceptId =     8749\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3037551\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3037551\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3037551 (CANCER AG 125 [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3037551","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2130,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.778"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.719762 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3037551\nunitConceptId =     8763\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3037551\n\t\tand m.unit_concept_id =     8763\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3037551\n\tand unit_concept_id =     8763\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3037551 (CANCER AG 125 [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8763 (UNIT PER MILLILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3037551","UNIT_CONCEPT_ID":"    8763","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2131,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.779"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.439709 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3037551\nunitConceptId =     8810\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3037551\n\t\tand m.unit_concept_id =     8810\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3037551\n\tand unit_concept_id =     8810\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3037551 (CANCER AG 125 [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8810 (KILOUNIT PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3037551","UNIT_CONCEPT_ID":"    8810","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2132,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.780"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819127 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3037551\nunitConceptId =     8980\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3037551\n\t\tand m.unit_concept_id =     8980\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3037551\n\tand unit_concept_id =     8980\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3037551 (CANCER AG 125 [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8980 (ARBITRARY UNIT PER MILLILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3037551","UNIT_CONCEPT_ID":"    8980","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2133,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.781"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.888339 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3037551\nunitConceptId =     8985\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3037551\n\t\tand m.unit_concept_id =     8985\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3037551\n\tand unit_concept_id =     8985\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3037551 (CANCER AG 125 [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8985 (INTERNATIONAL UNIT PER MILLILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3037551","UNIT_CONCEPT_ID":"    8985","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2134,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.782"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.972999 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3037556\nunitConceptId =     8713\nplausibleValueLow =      0.001\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3037556\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.001\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3037556\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3037556 (URATE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      0.001.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3037556","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2135,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.783"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.903996 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3037556\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3037556\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3037556\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3037556 (URATE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3037556","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2136,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.784"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.665485 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3037672\nunitConceptId =     8554\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3037672\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3037672\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3037672 (PROTEIN.MONOCLONAL/PROTEIN.TOTAL IN URINE BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3037672","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2137,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.785"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.696738 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3038058\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3038058\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3038058\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3038058 (LYMPHOCYTES/100 LEUKOCYTES IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3038058","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2138,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.786"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.919820 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3038058\nunitConceptId =     8816\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3038058\n\t\tand m.unit_concept_id =     8816\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3038058\n\tand unit_concept_id =     8816\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3038058 (LYMPHOCYTES/100 LEUKOCYTES IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8816 (MILLION PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3038058","UNIT_CONCEPT_ID":"    8816","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2139,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.787"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.689334 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3038058\nunitConceptId =     8848\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3038058\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3038058\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3038058 (LYMPHOCYTES/100 LEUKOCYTES IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3038058","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2140,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.788"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.434827 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3038205\nunitConceptId =     8848\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3038205\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3038205\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3038205 (ALTERNARIA ALTERNATA IGE AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3038205","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2141,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.789"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.765660 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3038553\nunitConceptId =     9531\nplausibleValueLow =     16.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3038553\n\t\tand m.unit_concept_id =     9531\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     16.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3038553\n\tand unit_concept_id =     9531\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3038553 (BODY MASS INDEX (BMI) [RATIO]) and UNIT_CONCEPT_ID     9531 (KILOGRAM PER SQUARE METER), the number and percent of records that have a value less than     16.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3038553","UNIT_CONCEPT_ID":"    9531","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2142,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.790"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.424378 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3039000\nunitConceptId =     8713\nplausibleValueLow =      2.200\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3039000\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.200\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3039000\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3039000 (ANION GAP IN BLOOD) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      2.200.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3039000","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2143,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.791"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.871388 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3039000\nunitConceptId =     8753\nplausibleValueLow =      4.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3039000\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      4.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3039000\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3039000 (ANION GAP IN BLOOD) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      4.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3039000","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2144,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.792"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.472887 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3039000\nunitConceptId =     9551\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3039000\n\t\tand m.unit_concept_id =     9551\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3039000\n\tand unit_concept_id =     9551\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3039000 (ANION GAP IN BLOOD) and UNIT_CONCEPT_ID     9551 (MILLIEQUIVALENT), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3039000","UNIT_CONCEPT_ID":"    9551","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2145,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.793"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.834226 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3039000\nunitConceptId =     9557\nplausibleValueLow =      4.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3039000\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      4.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3039000\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3039000 (ANION GAP IN BLOOD) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than      4.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3039000","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2146,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.794"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.680640 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3039211\nunitConceptId =     8749\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3039211\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3039211\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3039211 (ALPHA-1-FETOPROTEIN.TUMOR MARKER [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3039211","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2147,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.795"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.650106 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3039381\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3039381\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3039381\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3039381 (T(9;22)(Q34.1;Q11)(ABL1,BCR) B2A2 FUSION TRANSCRIPT/CONTROL TRANSCRIPT [# RATIO] IN BLOOD OR TISSUE BY MOLECULAR GENETICS METHOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3039381","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2148,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.796"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.486991 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3039783\nunitConceptId =     8748\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3039783\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3039783\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3039783 (ALPHA-1-FETOPROTEIN.TUMOR MARKER [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3039783","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2149,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.797"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.440801 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3039783\nunitConceptId =     8842\nplausibleValueLow =      2.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3039783\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      2.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3039783\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3039783 (ALPHA-1-FETOPROTEIN.TUMOR MARKER [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      2.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3039783","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2150,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.798"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.771901 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3040168\nunitConceptId =     8848\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3040168\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3040168\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3040168 (IMMATURE GRANULOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3040168","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2151,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.799"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.402862 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3040168\nunitConceptId =     8961\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3040168\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3040168\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3040168 (IMMATURE GRANULOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3040168","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2152,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.800"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.556194 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3041559\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3041559\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3041559\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3041559 (T(9;22)(Q34.1;Q11)(ABL1,BCR) B3A2 FUSION TRANSCRIPT/CONTROL TRANSCRIPT [# RATIO] IN BLOOD OR TISSUE BY MOLECULAR GENETICS METHOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3041559","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2153,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.801"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.505497 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3043000\nunitConceptId =     8713\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3043000\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3043000\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3043000 (HAPTOGLOBIN [MASS/VOLUME] IN SERUM OR PLASMA BY NEPHELOMETRY) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3043000","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2154,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.802"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.997142 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3043000\nunitConceptId =     8840\nplausibleValueLow =      0.010\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3043000\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.010\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3043000\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3043000 (HAPTOGLOBIN [MASS/VOLUME] IN SERUM OR PLASMA BY NEPHELOMETRY) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.010.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3043000","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2155,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.803"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803129 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3045716\nunitConceptId =     8753\nplausibleValueLow =      4.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3045716\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      4.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3045716\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3045716 (ANION GAP IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      4.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3045716","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2156,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.804"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.587543 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3045716\nunitConceptId =     9557\nplausibleValueLow =      4.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3045716\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      4.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3045716\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3045716 (ANION GAP IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value less than      4.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3045716","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2157,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.805"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.772293 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3046279\nunitConceptId =     8842\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3046279\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3046279\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3046279 (PROCALCITONIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3046279","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2158,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.806"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.751191 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3046485\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3046485\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3046485\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3046485 (UREA NITROGEN/CREATININE [MASS RATIO] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3046485","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2159,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.807"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.771545 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3046569\nunitConceptId =     8736\nplausibleValueLow =     11.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3046569\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     11.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3046569\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3046569 (TRANSFERRIN RECEPTOR.SOLUBLE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value less than     11.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3046569","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2160,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.808"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.824594 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3048863\nunitConceptId =     8554\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3048863\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3048863\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3048863 (CREATINE KINASE.MB/CREATINE KINASE.TOTAL [RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3048863","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2161,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.809"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.487258 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3049187\nunitConceptId =     8510\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3049187\n\t\tand m.unit_concept_id =     8510\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3049187\n\tand unit_concept_id =     8510\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3049187 (GLOMERULAR FILTRATION RATE/1.73 SQ M PREDICTED AMONG NON-BLACKS [VOLUME RATE/AREA] IN SERUM, PLASMA OR BLOOD BY CREATININE-BASED FORMULA (MDRD)) and UNIT_CONCEPT_ID     8510 (UNIT), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3049187","UNIT_CONCEPT_ID":"    8510","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2162,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.810"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.618969 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3049187\nunitConceptId =     8519\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3049187\n\t\tand m.unit_concept_id =     8519\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3049187\n\tand unit_concept_id =     8519\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3049187 (GLOMERULAR FILTRATION RATE/1.73 SQ M PREDICTED AMONG NON-BLACKS [VOLUME RATE/AREA] IN SERUM, PLASMA OR BLOOD BY CREATININE-BASED FORMULA (MDRD)) and UNIT_CONCEPT_ID     8519 (LITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3049187","UNIT_CONCEPT_ID":"    8519","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2163,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.811"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.529254 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3049187\nunitConceptId =     8587\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3049187\n\t\tand m.unit_concept_id =     8587\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3049187\n\tand unit_concept_id =     8587\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3049187 (GLOMERULAR FILTRATION RATE/1.73 SQ M PREDICTED AMONG NON-BLACKS [VOLUME RATE/AREA] IN SERUM, PLASMA OR BLOOD BY CREATININE-BASED FORMULA (MDRD)) and UNIT_CONCEPT_ID     8587 (MILLILITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3049187","UNIT_CONCEPT_ID":"    8587","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2164,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.812"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.718314 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3049187\nunitConceptId =     8795\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3049187\n\t\tand m.unit_concept_id =     8795\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3049187\n\tand unit_concept_id =     8795\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3049187 (GLOMERULAR FILTRATION RATE/1.73 SQ M PREDICTED AMONG NON-BLACKS [VOLUME RATE/AREA] IN SERUM, PLASMA OR BLOOD BY CREATININE-BASED FORMULA (MDRD)) and UNIT_CONCEPT_ID     8795 (MILLILITER PER MINUTE), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3049187","UNIT_CONCEPT_ID":"    8795","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2165,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.813"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.720379 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3049187\nunitConceptId =     9117\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3049187\n\t\tand m.unit_concept_id =     9117\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3049187\n\tand unit_concept_id =     9117\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3049187 (GLOMERULAR FILTRATION RATE/1.73 SQ M PREDICTED AMONG NON-BLACKS [VOLUME RATE/AREA] IN SERUM, PLASMA OR BLOOD BY CREATININE-BASED FORMULA (MDRD)) and UNIT_CONCEPT_ID     9117 (MILLILITER PER MINUTE PER 1.73 SQUARE METER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3049187","UNIT_CONCEPT_ID":"    9117","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2166,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.814"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.766078 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3049187\nunitConceptId =     9330\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3049187\n\t\tand m.unit_concept_id =     9330\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3049187\n\tand unit_concept_id =     9330\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3049187 (GLOMERULAR FILTRATION RATE/1.73 SQ M PREDICTED AMONG NON-BLACKS [VOLUME RATE/AREA] IN SERUM, PLASMA OR BLOOD BY CREATININE-BASED FORMULA (MDRD)) and UNIT_CONCEPT_ID     9330 (INCH (US)), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3049187","UNIT_CONCEPT_ID":"    9330","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2167,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.815"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.872684 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3049187\nunitConceptId =     9546\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3049187\n\t\tand m.unit_concept_id =     9546\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3049187\n\tand unit_concept_id =     9546\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3049187 (GLOMERULAR FILTRATION RATE/1.73 SQ M PREDICTED AMONG NON-BLACKS [VOLUME RATE/AREA] IN SERUM, PLASMA OR BLOOD BY CREATININE-BASED FORMULA (MDRD)) and UNIT_CONCEPT_ID     9546 (METER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3049187","UNIT_CONCEPT_ID":"    9546","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2168,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.816"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.802364 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3050479\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3050479\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3050479\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3050479 (IMMATURE GRANULOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3050479","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2169,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.817"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.856816 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016662\nunitConceptId =     8840\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016662\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016662\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016662 (CREATININE [MASS/VOLUME] IN BODY FLUID) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016662","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2170,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.818"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.398290 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3053181\nunitConceptId =     8555\nplausibleValueLow =      3.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3053181\n\t\tand m.unit_concept_id =     8555\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      3.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3053181\n\tand unit_concept_id =     8555\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3053181 (PROTHROMBIN TIME (PT) IN CAPILLARY BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8555 (SECOND), the number and percent of records that have a value less than      3.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3053181","UNIT_CONCEPT_ID":"    8555","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2171,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.819"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.719240 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3053283\nunitConceptId =     8510\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3053283\n\t\tand m.unit_concept_id =     8510\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3053283\n\tand unit_concept_id =     8510\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3053283 (GLOMERULAR FILTRATION RATE/1.73 SQ M PREDICTED AMONG BLACKS [VOLUME RATE/AREA] IN SERUM, PLASMA OR BLOOD BY CREATININE-BASED FORMULA (MDRD)) and UNIT_CONCEPT_ID     8510 (UNIT), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3053283","UNIT_CONCEPT_ID":"    8510","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2172,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.820"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.903652 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3053283\nunitConceptId =     8795\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3053283\n\t\tand m.unit_concept_id =     8795\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3053283\n\tand unit_concept_id =     8795\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3053283 (GLOMERULAR FILTRATION RATE/1.73 SQ M PREDICTED AMONG BLACKS [VOLUME RATE/AREA] IN SERUM, PLASMA OR BLOOD BY CREATININE-BASED FORMULA (MDRD)) and UNIT_CONCEPT_ID     8795 (MILLILITER PER MINUTE), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3053283","UNIT_CONCEPT_ID":"    8795","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2173,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.821"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.689194 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3053283\nunitConceptId =     9117\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3053283\n\t\tand m.unit_concept_id =     9117\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3053283\n\tand unit_concept_id =     9117\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3053283 (GLOMERULAR FILTRATION RATE/1.73 SQ M PREDICTED AMONG BLACKS [VOLUME RATE/AREA] IN SERUM, PLASMA OR BLOOD BY CREATININE-BASED FORMULA (MDRD)) and UNIT_CONCEPT_ID     9117 (MILLILITER PER MINUTE PER 1.73 SQUARE METER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3053283","UNIT_CONCEPT_ID":"    9117","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2174,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.822"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.450104 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028437\nunitConceptId =     8736\nplausibleValueLow =    864.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028437\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    864.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028437\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028437 (CHOLESTEROL IN LDL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value less than    864.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028437","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2175,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.823"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.741909 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4008265\nunitConceptId =     8636\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4008265\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4008265\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4008265 (TOTAL CHOLESTEROL MEASUREMENT) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4008265","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2176,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.824"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.887193 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4008265\nunitConceptId =     8840\nplausibleValueLow =     50.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4008265\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     50.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4008265\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4008265 (TOTAL CHOLESTEROL MEASUREMENT) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     50.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4008265","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2177,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.825"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.656270 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4008265\nunitConceptId =     8736\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4008265\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4008265\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4008265 (TOTAL CHOLESTEROL MEASUREMENT) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4008265","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2178,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.826"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.950806 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4146380\nunitConceptId =     8510\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4146380\n\t\tand m.unit_concept_id =     8510\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4146380\n\tand unit_concept_id =     8510\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4146380 (ALANINE AMINOTRANSFERASE MEASUREMENT) and UNIT_CONCEPT_ID     8510 (UNIT), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4146380","UNIT_CONCEPT_ID":"    8510","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2179,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.827"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.772630 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4149519\nunitConceptId =     8636\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4149519\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4149519\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4149519 (GLUCOSE MEASUREMENT) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4149519","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2180,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.828"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.772081 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4149519\nunitConceptId =     8736\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4149519\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4149519\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4149519 (GLUCOSE MEASUREMENT) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4149519","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2181,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.829"},{"NUM_VIOLATED_ROWS":42,"PCT_VIOLATED_ROWS":0.0023,"NUM_DENOMINATOR_ROWS":18033,"EXECUTION_TIME":"1.703493 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012888\nunitConceptId =     8876\nplausibleValueLow =     30.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012888\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     30.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012888\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012888 (DIASTOLIC BLOOD PRESSURE) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     30.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012888","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2182,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.830"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.756578 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018586\nunitConceptId =     8876\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018586\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018586\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018586 (SYSTOLIC BLOOD PRESSURE--SITTING) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018586","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2183,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.831"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.668193 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4208414\nunitConceptId =     8576\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4208414\n\t\tand m.unit_concept_id =     8576\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4208414\n\tand unit_concept_id =     8576\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4208414 (C-REACTIVE PROTEIN MEASUREMENT) and UNIT_CONCEPT_ID     8576 (MILLIGRAM), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4208414","UNIT_CONCEPT_ID":"    8576","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2184,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.832"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.708604 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4208414\nunitConceptId =     8751\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4208414\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4208414\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4208414 (C-REACTIVE PROTEIN MEASUREMENT) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4208414","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2185,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.833"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.855714 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4208414\nunitConceptId =     8840\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4208414\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4208414\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4208414 (C-REACTIVE PROTEIN MEASUREMENT) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4208414","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2186,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.834"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.450126 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4301868\nunitConceptId =     8541\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4301868\n\t\tand m.unit_concept_id =     8541\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4301868\n\tand unit_concept_id =     8541\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4301868 (PULSE RATE) and UNIT_CONCEPT_ID     8541 (PER MINUTE), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4301868","UNIT_CONCEPT_ID":"    8541","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2187,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.835"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.687702 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4301868\nunitConceptId =     8581\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4301868\n\t\tand m.unit_concept_id =     8581\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4301868\n\tand unit_concept_id =     8581\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4301868 (PULSE RATE) and UNIT_CONCEPT_ID     8581 (HEARTBEAT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4301868","UNIT_CONCEPT_ID":"    8581","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2188,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.836"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.841774 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 40758583\nunitConceptId =     8519\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 40758583\n\t\tand m.unit_concept_id =     8519\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 40758583\n\tand unit_concept_id =     8519\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 40758583 (HEMOGLOBIN A1C IN BLOOD) and UNIT_CONCEPT_ID     8519 (LITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"40758583","UNIT_CONCEPT_ID":"    8519","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2189,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.837"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.355225 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 40758583\nunitConceptId =     8554\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 40758583\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 40758583\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 40758583 (HEMOGLOBIN A1C IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"40758583","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2190,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.838"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.703702 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 40758583\nunitConceptId =     8564\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 40758583\n\t\tand m.unit_concept_id =     8564\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 40758583\n\tand unit_concept_id =     8564\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 40758583 (HEMOGLOBIN A1C IN BLOOD) and UNIT_CONCEPT_ID     8564 (PICOGRAM), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"40758583","UNIT_CONCEPT_ID":"    8564","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2191,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.839"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.371539 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 40758583\nunitConceptId =     8576\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 40758583\n\t\tand m.unit_concept_id =     8576\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 40758583\n\tand unit_concept_id =     8576\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 40758583 (HEMOGLOBIN A1C IN BLOOD) and UNIT_CONCEPT_ID     8576 (MILLIGRAM), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"40758583","UNIT_CONCEPT_ID":"    8576","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2192,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.840"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.717560 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 40758583\nunitConceptId =     8713\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 40758583\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 40758583\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 40758583 (HEMOGLOBIN A1C IN BLOOD) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"40758583","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2193,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.841"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.789159 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 40758583\nunitConceptId =     8739\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 40758583\n\t\tand m.unit_concept_id =     8739\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 40758583\n\tand unit_concept_id =     8739\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 40758583 (HEMOGLOBIN A1C IN BLOOD) and UNIT_CONCEPT_ID     8739 (POUND (US)), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"40758583","UNIT_CONCEPT_ID":"    8739","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2194,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.842"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.902899 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 40758583\nunitConceptId =     8840\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 40758583\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 40758583\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 40758583 (HEMOGLOBIN A1C IN BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"40758583","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2195,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.843"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.551252 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 40758583\nunitConceptId =     9330\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 40758583\n\t\tand m.unit_concept_id =     9330\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 40758583\n\tand unit_concept_id =     9330\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 40758583 (HEMOGLOBIN A1C IN BLOOD) and UNIT_CONCEPT_ID     9330 (INCH (US)), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"40758583","UNIT_CONCEPT_ID":"    9330","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2196,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.844"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.433836 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 40762351\nunitConceptId =     8713\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 40762351\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 40762351\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 40762351 (HEMOGLOBIN [MOLES/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"40762351","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2197,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.845"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.698459 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 40762632\nunitConceptId =     8840\nplausibleValueLow =      5.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 40762632\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      5.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 40762632\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 40762632 (UREA NITROGEN [MOLES/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      5.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"40762632","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2198,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.846"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.190370 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 40762887\nunitConceptId =     8749\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 40762887\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 40762887\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 40762887 (CREATININE [MOLES/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"40762887","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2199,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.847"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":2,"EXECUTION_TIME":"1.765157 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016723\nunitConceptId =     8840\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016723\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016723\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016723 (CREATININE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016723","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2200,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.848"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.355919 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 40764999\nunitConceptId =     8795\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 40764999\n\t\tand m.unit_concept_id =     8795\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 40764999\n\tand unit_concept_id =     8795\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 40764999 (GLOMERULAR FILTRATION RATE/1.73 SQ M.PREDICTED [VOLUME RATE/AREA] IN SERUM, PLASMA OR BLOOD BY CREATININE-BASED FORMULA (CKD-EPI)) and UNIT_CONCEPT_ID     8795 (MILLILITER PER MINUTE), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"40764999","UNIT_CONCEPT_ID":"    8795","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2201,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.849"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.671598 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 40764999\nunitConceptId =     9117\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 40764999\n\t\tand m.unit_concept_id =     9117\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 40764999\n\tand unit_concept_id =     9117\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 40764999 (GLOMERULAR FILTRATION RATE/1.73 SQ M.PREDICTED [VOLUME RATE/AREA] IN SERUM, PLASMA OR BLOOD BY CREATININE-BASED FORMULA (CKD-EPI)) and UNIT_CONCEPT_ID     9117 (MILLILITER PER MINUTE PER 1.73 SQUARE METER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"40764999","UNIT_CONCEPT_ID":"    9117","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2202,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.850"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.457877 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 40765040\nunitConceptId =     8842\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 40765040\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 40765040\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 40765040 (25-HYDROXYVITAMIN D2+25-HYDROXYVITAMIN D3 [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"40765040","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2203,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.851"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.433412 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 40765040\nunitConceptId =     8845\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 40765040\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 40765040\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 40765040 (25-HYDROXYVITAMIN D2+25-HYDROXYVITAMIN D3 [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"40765040","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2204,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.852"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.909617 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 40771922\nunitConceptId =     8795\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 40771922\n\t\tand m.unit_concept_id =     8795\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 40771922\n\tand unit_concept_id =     8795\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 40771922 (GLOMERULAR FILTRATION RATE/1.73 SQ M.PREDICTED [VOLUME RATE/AREA] IN SERUM, PLASMA OR BLOOD) and UNIT_CONCEPT_ID     8795 (MILLILITER PER MINUTE), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"40771922","UNIT_CONCEPT_ID":"    8795","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2205,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.853"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.036489 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 40771922\nunitConceptId =     9117\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 40771922\n\t\tand m.unit_concept_id =     9117\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 40771922\n\tand unit_concept_id =     9117\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 40771922 (GLOMERULAR FILTRATION RATE/1.73 SQ M.PREDICTED [VOLUME RATE/AREA] IN SERUM, PLASMA OR BLOOD) and UNIT_CONCEPT_ID     9117 (MILLILITER PER MINUTE PER 1.73 SQUARE METER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"40771922","UNIT_CONCEPT_ID":"    9117","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2206,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.854"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.429517 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 42869588\nunitConceptId =     8554\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 42869588\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 42869588\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 42869588 (HEMATOCRIT [PURE VOLUME FRACTION] OF BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"42869588","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2207,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.855"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.487226 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4008265\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4008265\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4008265\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4008265 (TOTAL CHOLESTEROL MEASUREMENT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4008265","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2208,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.856"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.888462 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4198448\nunitConceptId =     8840\nplausibleValueLow =     50.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4198448\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     50.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4198448\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4198448 (FASTING CHOLESTEROL LEVEL) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     50.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4198448","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2209,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.857"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.718644 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4198448\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4198448\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4198448\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4198448 (FASTING CHOLESTEROL LEVEL) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4198448","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2210,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.858"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.413846 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4260765\nunitConceptId =     8840\nplausibleValueLow =     50.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4260765\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     50.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4260765\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4260765 (SERUM TOTAL CHOLESTEROL MEASUREMENT) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     50.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4260765","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2211,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.859"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.031928 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4260765\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4260765\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4260765\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4260765 (SERUM TOTAL CHOLESTEROL MEASUREMENT) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4260765","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2212,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.860"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.784760 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = OBSERVATION_CONCEPT_ID\nconceptId = 37393449\nunitConceptId =     8840\nplausibleValueLow =     50.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation m\n\t\t\n\t\twhere m.observation_concept_id = 37393449\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     50.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation m\n\t\n\twhere m.observation_concept_id = 37393449\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 37393449 (PLASMA TOTAL CHOLESTEROL LEVEL) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     50.000.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"OBSERVATION_CONCEPT_ID","CONCEPT_ID":"37393449","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2213,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.861"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.717247 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = OBSERVATION_CONCEPT_ID\nconceptId = 37393449\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation m\n\t\t\n\t\twhere m.observation_concept_id = 37393449\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation m\n\t\n\twhere m.observation_concept_id = 37393449\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 37393449 (PLASMA TOTAL CHOLESTEROL LEVEL) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"OBSERVATION_CONCEPT_ID","CONCEPT_ID":"37393449","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2214,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.862"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.672433 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = OBSERVATION_CONCEPT_ID\nconceptId = 37397989\nunitConceptId =     8840\nplausibleValueLow =     50.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation m\n\t\t\n\t\twhere m.observation_concept_id = 37397989\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     50.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation m\n\t\n\twhere m.observation_concept_id = 37397989\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 37397989 (SERUM TOTAL CHOLESTEROL LEVEL) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     50.000.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"OBSERVATION_CONCEPT_ID","CONCEPT_ID":"37397989","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2215,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.863"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.757992 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = OBSERVATION_CONCEPT_ID\nconceptId = 37397989\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation m\n\t\t\n\t\twhere m.observation_concept_id = 37397989\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation m\n\t\n\twhere m.observation_concept_id = 37397989\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 37397989 (SERUM TOTAL CHOLESTEROL LEVEL) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"OBSERVATION_CONCEPT_ID","CONCEPT_ID":"37397989","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2216,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.864"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.872594 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 40484105\nunitConceptId =     8840\nplausibleValueLow =     50.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 40484105\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     50.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 40484105\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 40484105 (MEASUREMENT OF TOTAL CHOLESTEROL AND TRIGLYCERIDES) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     50.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"40484105","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2217,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.865"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.682694 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 40484105\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 40484105\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 40484105\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 40484105 (MEASUREMENT OF TOTAL CHOLESTEROL AND TRIGLYCERIDES) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"40484105","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2218,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.866"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.470647 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 44791053\nunitConceptId =     8840\nplausibleValueLow =     50.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 44791053\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     50.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 44791053\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 44791053 (SERUM FASTING TOTAL CHOLESTEROL) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     50.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"44791053","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2219,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.867"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.502160 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 44791053\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 44791053\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 44791053\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 44791053 (SERUM FASTING TOTAL CHOLESTEROL) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"44791053","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2220,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.868"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.487152 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = OBSERVATION_CONCEPT_ID\nconceptId = 44809580\nunitConceptId =     8840\nplausibleValueLow =     50.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation m\n\t\t\n\t\twhere m.observation_concept_id = 44809580\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     50.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation m\n\t\n\twhere m.observation_concept_id = 44809580\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 44809580 (TOTAL CHOLESTEROL LEVEL) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     50.000.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"OBSERVATION_CONCEPT_ID","CONCEPT_ID":"44809580","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2221,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.869"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.503163 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = OBSERVATION_CONCEPT_ID\nconceptId = 44809580\nunitConceptId =     8753\nplausibleValueLow =      1.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation m\n\t\t\n\t\twhere m.observation_concept_id = 44809580\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      1.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation m\n\t\n\twhere m.observation_concept_id = 44809580\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 44809580 (TOTAL CHOLESTEROL LEVEL) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value less than      1.000.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"OBSERVATION_CONCEPT_ID","CONCEPT_ID":"44809580","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2222,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.870"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.618495 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028737\nunitConceptId =     8876\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028737\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028737\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028737 (SYSTOLIC BLOOD PRESSURE BY PALPATION) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028737","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2223,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.871"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.804934 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3035856\nunitConceptId =     8876\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3035856\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3035856\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3035856 (SYSTOLIC BLOOD PRESSURE--STANDING) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3035856","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2224,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.872"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.824102 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4152194\nunitConceptId =     8876\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4152194\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4152194\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4152194 (SYSTOLIC BLOOD PRESSURE) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4152194","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2225,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.873"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.689228 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4152194\nunitConceptId =        0\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4152194\n\t\tand m.unit_concept_id =        0\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4152194\n\tand unit_concept_id =        0\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4152194 (SYSTOLIC BLOOD PRESSURE) and UNIT_CONCEPT_ID        0 (NULL), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4152194","UNIT_CONCEPT_ID":"       0","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2226,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.874"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.650588 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4153323\nunitConceptId =     8876\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4153323\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4153323\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4153323 (TARGET SYSTOLIC BLOOD PRESSURE) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4153323","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2227,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.875"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.955975 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4153323\nunitConceptId =        0\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4153323\n\t\tand m.unit_concept_id =        0\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4153323\n\tand unit_concept_id =        0\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4153323 (TARGET SYSTOLIC BLOOD PRESSURE) and UNIT_CONCEPT_ID        0 (NULL), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4153323","UNIT_CONCEPT_ID":"       0","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2228,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.876"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.810783 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4154790\nunitConceptId =     8554\nplausibleValueLow =      0.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4154790\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4154790\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4154790 (DIASTOLIC BLOOD PRESSURE) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value less than      0.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4154790","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2229,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.877"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.720129 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4154790\nunitConceptId =     8876\nplausibleValueLow =     30.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4154790\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     30.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4154790\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4154790 (DIASTOLIC BLOOD PRESSURE) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     30.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4154790","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2230,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.878"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.550204 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4161413\nunitConceptId =     8876\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4161413\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4161413\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4161413 (SYSTOLIC BLOOD PRESSURE ON ADMISSION) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4161413","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2231,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.879"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.856761 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4197167\nunitConceptId =     8876\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4197167\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4197167\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4197167 (24 HOUR SYSTOLIC BLOOD PRESSURE) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4197167","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2232,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.880"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.703139 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4217013\nunitConceptId =     8876\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4217013\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4217013\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4217013 (SYSTOLIC ARTERIAL PRESSURE) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4217013","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2233,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.881"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.886313 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4232915\nunitConceptId =     8876\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4232915\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4232915\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4232915 (SITTING SYSTOLIC BLOOD PRESSURE) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4232915","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2234,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.882"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"6.349793 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4248525\nunitConceptId =     8876\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4248525\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4248525\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4248525 (LYING SYSTOLIC BLOOD PRESSURE) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4248525","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2235,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.883"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.872551 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4292062\nunitConceptId =     8876\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4292062\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4292062\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4292062 (STANDING SYSTOLIC BLOOD PRESSURE) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4292062","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2236,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.884"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.782171 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 21492239\nunitConceptId =     8876\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 21492239\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 21492239\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 21492239 (SYSTOLIC BLOOD PRESSURE BY NONINVASIVE) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"21492239","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2237,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.885"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.470719 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 37396683\nunitConceptId =     8876\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 37396683\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 37396683\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 37396683 (BASELINE SYSTOLIC BLOOD PRESSURE) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"37396683","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2238,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.886"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.587539 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 44789315\nunitConceptId =     8876\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 44789315\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 44789315\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 44789315 (AMBULATORY SYSTOLIC BP) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"44789315","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2239,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.887"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.866178 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 44806887\nunitConceptId =     8876\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 44806887\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 44806887\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 44806887 (SYSTOLIC BLOOD PRESSURE CENTILE) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"44806887","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2240,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.888"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.703821 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 45769778\nunitConceptId =     8876\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 45769778\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 45769778\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 45769778 (SYSTOLIC BLOOD PRESSURE OF NEONATE AT BIRTH) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"45769778","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2241,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.889"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.749831 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4013964\nunitConceptId =     8749\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4013964\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4013964\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4013964 (CREATININE MEASUREMENT, SERUM) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4013964","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2242,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.890"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":2,"EXECUTION_TIME":"1.703272 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017250\nunitConceptId =     8840\nplausibleValueLow =     17.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017250\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     17.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017250\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017250 (CREATININE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     17.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017250","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2243,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.891"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.771966 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020564\nunitConceptId =     8840\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020564\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020564\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020564 (CREATININE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020564","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2244,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.892"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.903286 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3051825\nunitConceptId =     8840\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3051825\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3051825\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3051825 (CREATININE [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3051825","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2245,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.893"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.973146 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4013964\nunitConceptId =     8840\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4013964\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4013964\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4013964 (CREATININE MEASUREMENT, SERUM) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4013964","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2246,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.894"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.587992 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4150621\nunitConceptId =     8840\nplausibleValueLow =     17.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4150621\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     17.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4150621\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4150621 (CREATININE MEASUREMENT, URINE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than     17.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4150621","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2247,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.895"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.902363 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4155367\nunitConceptId =     8840\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4155367\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4155367\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4155367 (CREATININE MEASUREMENT, BODY FLUID) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4155367","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2248,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.896"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.015182 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4324383\nunitConceptId =     8840\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4324383\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4324383\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4324383 (CREATININE MEASUREMENT) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4324383","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2249,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.897"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.862198 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId = 40762887\nunitConceptId =     8840\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id = 40762887\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id = 40762887\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 40762887 (CREATININE [MOLES/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":"40762887","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2250,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.898"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.779874 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212294\nunitConceptId =     8751\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212294\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212294\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212294 (CREATININE; BLOOD) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212294","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2251,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.899"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.771546 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212295\nunitConceptId =     8751\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212295\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212295\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212295 (CREATININE; OTHER SOURCE) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212295","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2252,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.900"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.634924 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4324383\nunitConceptId =     8751\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4324383\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4324383\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4324383 (CREATININE MEASUREMENT) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4324383","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2253,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.901"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.257740 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016662\nunitConceptId =     8751\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016662\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016662\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016662 (CREATININE [MASS/VOLUME] IN BODY FLUID) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016662","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2254,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.902"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.932053 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4150621\nunitConceptId =     8751\nplausibleValueLow =    300.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4150621\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    300.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4150621\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4150621 (CREATININE MEASUREMENT, URINE) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than    300.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4150621","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2255,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.903"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.908380 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4155367\nunitConceptId =     8751\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4155367\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4155367\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4155367 (CREATININE MEASUREMENT, BODY FLUID) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4155367","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2256,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.904"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.219922 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009508\nunitConceptId =     8751\nplausibleValueLow =    300.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009508\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <    300.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009508\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009508 (CREATININE [MOLES/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than    300.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009508","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2257,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.905"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.009688 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212294\nunitConceptId =     8749\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212294\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212294\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212294 (CREATININE; BLOOD) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212294","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2258,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.906"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.951232 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212295\nunitConceptId =     8749\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212295\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212295\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212295 (CREATININE; OTHER SOURCE) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212295","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2259,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.907"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.035344 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4324383\nunitConceptId =     8749\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4324383\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4324383\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4324383 (CREATININE MEASUREMENT) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4324383","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2260,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.908"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.522097 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016662\nunitConceptId =     8749\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016662\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016662\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016662 (CREATININE [MASS/VOLUME] IN BODY FLUID) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016662","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2261,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.909"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.137898 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4155367\nunitConceptId =     8749\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4155367\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4155367\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4155367 (CREATININE MEASUREMENT, BODY FLUID) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4155367","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2262,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.910"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.473117 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = OBSERVATION_CONCEPT_ID\nconceptId = 37392176\nunitConceptId =     8749\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation m\n\t\t\n\t\twhere m.observation_concept_id = 37392176\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation m\n\t\n\twhere m.observation_concept_id = 37392176\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 37392176 (SERUM CREATININE LEVEL) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"OBSERVATION_CONCEPT_ID","CONCEPT_ID":"37392176","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2263,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.911"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.359753 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = OBSERVATION_CONCEPT_ID\nconceptId = 37392176\nunitConceptId =     8840\nplausibleValueLow =      0.100\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation m\n\t\t\n\t\twhere m.observation_concept_id = 37392176\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <      0.100\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation m\n\t\n\twhere m.observation_concept_id = 37392176\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 37392176 (SERUM CREATININE LEVEL) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value less than      0.100.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"OBSERVATION_CONCEPT_ID","CONCEPT_ID":"37392176","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2264,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.912"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.072075 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = OBSERVATION\ncdmFieldName = OBSERVATION_CONCEPT_ID\nconceptId = 37392176\nunitConceptId =     8751\nplausibleValueLow =     10.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.observation m\n\t\t\n\t\twhere m.observation_concept_id = 37392176\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     10.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.observation m\n\t\n\twhere m.observation_concept_id = 37392176\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID 37392176 (SERUM CREATININE LEVEL) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value less than     10.000.","CDM_TABLE_NAME":"OBSERVATION","CDM_FIELD_NAME":"OBSERVATION_CONCEPT_ID","CONCEPT_ID":"37392176","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2265,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.913"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.621953 secs","QUERY_TEXT":"/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_LOW - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value < plausible low value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  4154791\nunitConceptId =        0\nplausibleValueLow =     30.000\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows, \n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  4154791\n\t\tand m.unit_concept_id =        0\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number <     30.000\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  4154791\n\tand unit_concept_id =        0\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueLow","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  4154791 (DIASTOLIC BLOOD PRESSURE) and UNIT_CONCEPT_ID        0 (NULL), the number and percent of records that have a value less than     30.000.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 4154791","UNIT_CONCEPT_ID":"       0","SQL_FILE":"concept_plausible_value_low.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2266,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"18.914"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.535033 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212226\nunitConceptId =     8713\nplausibleValueHigh =           34.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212226\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           34.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212226\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212226 (BILIRUBIN; TOTAL) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than           34.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212226","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2267,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.1"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.791517 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212226\nunitConceptId =     8840\nplausibleValueHigh =          398.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212226\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          398.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212226\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212226 (BILIRUBIN; TOTAL) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          398.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212226","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2268,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.2"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.140157 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212227\nunitConceptId =     8713\nplausibleValueHigh =           37.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212227\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           37.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212227\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212227 (BILIRUBIN; DIRECT) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than           37.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212227","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2269,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.3"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.373521 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212227\nunitConceptId =     8736\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212227\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212227\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212227 (BILIRUBIN; DIRECT) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212227","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2270,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.4"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.235447 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212227\nunitConceptId =     8753\nplausibleValueHigh =          148.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212227\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          148.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212227\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212227 (BILIRUBIN; DIRECT) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than          148.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212227","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2271,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.5"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.558973 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212227\nunitConceptId =     8837\nplausibleValueHigh =          483.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212227\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          483.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212227\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212227 (BILIRUBIN; DIRECT) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value higher than          483.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212227","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2272,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.6"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.473619 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212227\nunitConceptId =     8840\nplausibleValueHigh =        37000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212227\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >        37000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212227\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212227 (BILIRUBIN; DIRECT) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than        37000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212227","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2273,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.7"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.887625 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212227\nunitConceptId =     8842\nplausibleValueHigh =         1900.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212227\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1900.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212227\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212227 (BILIRUBIN; DIRECT) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than         1900.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212227","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2274,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.8"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.127096 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212227\nunitConceptId =     9557\nplausibleValueHigh =          148.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212227\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          148.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212227\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212227 (BILIRUBIN; DIRECT) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value higher than          148.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212227","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2275,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.9"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.902868 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212241\nunitConceptId =     8713\nplausibleValueHigh =           36.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212241\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           36.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212241\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212241 (CALCIUM; TOTAL) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than           36.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212241","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2276,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.10"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.173235 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212241\nunitConceptId =     8753\nplausibleValueHigh =          147.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212241\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          147.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212241\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212241 (CALCIUM; TOTAL) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than          147.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212241","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2277,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.11"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.935437 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212241\nunitConceptId =     8840\nplausibleValueHigh =           13.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212241\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           13.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212241\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212241 (CALCIUM; TOTAL) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than           13.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212241","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2278,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.12"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.357688 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212241\nunitConceptId =     8845\nplausibleValueHigh =          448.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212241\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          448.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212241\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212241 (CALCIUM; TOTAL) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value higher than          448.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212241","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2279,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.13"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.505260 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212241\nunitConceptId =     8861\nplausibleValueHigh =           13.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212241\n\t\tand m.unit_concept_id =     8861\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           13.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212241\n\tand unit_concept_id =     8861\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212241 (CALCIUM; TOTAL) and UNIT_CONCEPT_ID     8861 (MILLIGRAM PER MILLILITER), the number and percent of records that have a value higher than           13.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212241","UNIT_CONCEPT_ID":"    8861","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2280,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.14"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.020396 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212250\nunitConceptId =     8753\nplausibleValueHigh =           42.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212250\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           42.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212250\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212250 (CARBON DIOXIDE (BICARBONATE)) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than           42.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212250","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2281,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.15"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.568576 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212250\nunitConceptId =     9557\nplausibleValueHigh =           42.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212250\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           42.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212250\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212250 (CARBON DIOXIDE (BICARBONATE)) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value higher than           42.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212250","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2282,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.16"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.089358 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212263\nunitConceptId =     8753\nplausibleValueHigh =          147.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212263\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          147.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212263\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212263 (CHLORIDE; BLOOD) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than          147.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212263","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2283,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.17"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.924717 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212263\nunitConceptId =     8840\nplausibleValueHigh =           97.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212263\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           97.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212263\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212263 (CHLORIDE; BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than           97.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212263","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2284,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.18"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.302147 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212263\nunitConceptId =     9557\nplausibleValueHigh =          111.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212263\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          111.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212263\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212263 (CHLORIDE; BLOOD) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value higher than          111.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212263","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2285,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.19"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.787344 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212285\nunitConceptId =     8840\nplausibleValueHigh =           20.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212285\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           20.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212285\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212285 (CREATINE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than           20.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212285","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2286,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.20"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.126241 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212290\nunitConceptId =     8713\nplausibleValueHigh =          242.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212290\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          242.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212290\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212290 (CREATINE KINASE (CK), (CPK); TOTAL) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than          242.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212290","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2287,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.21"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.431219 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212290\nunitConceptId =     8753\nplausibleValueHigh =          242.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212290\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          242.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212290\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212290 (CREATINE KINASE (CK), (CPK); TOTAL) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than          242.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212290","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2288,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.22"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.101740 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212290\nunitConceptId =     8817\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212290\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212290\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212290 (CREATINE KINASE (CK), (CPK); TOTAL) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212290","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2289,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.23"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.943093 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212290\nunitConceptId =     8837\nplausibleValueHigh =          915.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212290\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          915.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212290\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212290 (CREATINE KINASE (CK), (CPK); TOTAL) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value higher than          915.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212290","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2290,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.24"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.210251 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212290\nunitConceptId =     8840\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212290\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212290\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212290 (CREATINE KINASE (CK), (CPK); TOTAL) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212290","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2291,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.25"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.865957 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212290\nunitConceptId =     8842\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212290\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212290\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212290 (CREATINE KINASE (CK), (CPK); TOTAL) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212290","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2292,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.26"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.685891 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212290\nunitConceptId =     8848\nplausibleValueHigh =          242.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212290\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          242.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212290\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212290 (CREATINE KINASE (CK), (CPK); TOTAL) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than          242.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212290","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2293,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.27"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.956522 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212290\nunitConceptId =     9557\nplausibleValueHigh =          242.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212290\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          242.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212290\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212290 (CREATINE KINASE (CK), (CPK); TOTAL) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value higher than          242.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212290","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2294,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.28"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.904030 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212333\nunitConceptId =     8554\nplausibleValueHigh =           40.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212333\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           40.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212333\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212333 (FERRITIN) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than           40.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212333","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2295,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.29"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.171949 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212333\nunitConceptId =     8583\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212333\n\t\tand m.unit_concept_id =     8583\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212333\n\tand unit_concept_id =     8583\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212333 (FERRITIN) and UNIT_CONCEPT_ID     8583 (FEMTOLITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212333","UNIT_CONCEPT_ID":"    8583","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2296,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.30"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.633511 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212333\nunitConceptId =     8713\nplausibleValueHigh =           32.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212333\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           32.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212333\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212333 (FERRITIN) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than           32.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212333","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2297,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.31"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.809429 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212333\nunitConceptId =     8840\nplausibleValueHigh =          150.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212333\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          150.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212333\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212333 (FERRITIN) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          150.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212333","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2298,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.32"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.740085 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212333\nunitConceptId =     8842\nplausibleValueHigh =          700.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212333\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          700.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212333\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212333 (FERRITIN) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than          700.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212333","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2299,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.33"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.998607 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212333\nunitConceptId =     8848\nplausibleValueHigh =           70.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212333\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           70.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212333\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212333 (FERRITIN) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than           70.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212333","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2300,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.34"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.501829 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212392\nunitConceptId =     8554\nplausibleValueHigh =           20.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212392\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           20.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212392\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212392 (HEMOGLOBIN; GLYCOSYLATED (A1C)) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than           20.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212392","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2301,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.35"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.703495 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212392\nunitConceptId =     8564\nplausibleValueHigh =           36.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212392\n\t\tand m.unit_concept_id =     8564\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           36.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212392\n\tand unit_concept_id =     8564\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212392 (HEMOGLOBIN; GLYCOSYLATED (A1C)) and UNIT_CONCEPT_ID     8564 (PICOGRAM), the number and percent of records that have a value higher than           36.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212392","UNIT_CONCEPT_ID":"    8564","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2302,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.36"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.834651 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212392\nunitConceptId =     8736\nplausibleValueHigh =         3000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212392\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         3000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212392\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212392 (HEMOGLOBIN; GLYCOSYLATED (A1C)) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value higher than         3000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212392","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2303,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.37"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.773263 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212392\nunitConceptId =     8840\nplausibleValueHigh =          300.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212392\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          300.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212392\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212392 (HEMOGLOBIN; GLYCOSYLATED (A1C)) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          300.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212392","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2304,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.38"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.841326 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212392\nunitConceptId =     8845\nplausibleValueHigh =          200.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212392\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          200.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212392\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212392 (HEMOGLOBIN; GLYCOSYLATED (A1C)) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value higher than          200.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212392","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2305,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.39"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.532667 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212421\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212421\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212421\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212421 (IRON) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212421","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2306,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.40"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.503970 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212421\nunitConceptId =     8837\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212421\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212421\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212421 (IRON) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212421","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2307,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.41"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.465463 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212421\nunitConceptId =     8842\nplausibleValueHigh =          270.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212421\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          270.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212421\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212421 (IRON) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than          270.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212421","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2308,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.42"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.839858 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212427\nunitConceptId =     8753\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212427\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212427\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212427 (LACTATE (LACTIC ACID)) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212427","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2309,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.43"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.657213 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212441\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212441\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212441\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212441 (LIPASE) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212441","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2310,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.44"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.649393 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212449\nunitConceptId =     8840\nplausibleValueHigh =          150.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212449\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          150.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212449\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212449 (LIPOPROTEIN, DIRECT MEASUREMENT; HIGH DENSITY CHOLESTEROL (HDL CHOLESTEROL)) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          150.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212449","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2311,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.45"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.020577 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212451\nunitConceptId =     8840\nplausibleValueHigh =          400.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212451\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          400.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212451\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212451 (LIPOPROTEIN, DIRECT MEASUREMENT; LDL CHOLESTEROL) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          400.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212451","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2312,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.46"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.930721 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212451\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212451\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212451\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212451 (LIPOPROTEIN, DIRECT MEASUREMENT; LDL CHOLESTEROL) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212451","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2313,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.47"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.503145 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212453\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212453\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212453\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212453 (MAGNESIUM) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212453","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2314,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.48"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.166361 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212453\nunitConceptId =     8736\nplausibleValueHigh =         2100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212453\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212453\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212453 (MAGNESIUM) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value higher than         2100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212453","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2315,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.49"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.718927 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212453\nunitConceptId =     8753\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212453\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212453\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212453 (MAGNESIUM) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212453","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2316,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.50"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.470884 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212453\nunitConceptId =     8837\nplausibleValueHigh =         6000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212453\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         6000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212453\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212453 (MAGNESIUM) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value higher than         6000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212453","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2317,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.51"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.700589 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212453\nunitConceptId =     8840\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212453\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212453\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212453 (MAGNESIUM) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212453","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2318,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.52"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.634894 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212453\nunitConceptId =     9557\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212453\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212453\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212453 (MAGNESIUM) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212453","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2319,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.53"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.967275 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212517\nunitConceptId =     8713\nplausibleValueHigh =           36.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212517\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           36.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212517\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212517 (PHOSPHATASE, ALKALINE) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than           36.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212517","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2320,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.54"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.483362 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212517\nunitConceptId =     8840\nplausibleValueHigh =          360.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212517\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          360.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212517\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212517 (PHOSPHATASE, ALKALINE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          360.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212517","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2321,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.55"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.688036 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212523\nunitConceptId =     8713\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212523\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212523\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212523 (PHOSPHORUS INORGANIC (PHOSPHATE)) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212523","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2322,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.56"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.585949 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212523\nunitConceptId =     8753\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212523\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212523\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212523 (PHOSPHORUS INORGANIC (PHOSPHATE)) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212523","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2323,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.57"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.701058 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212523\nunitConceptId =     8840\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212523\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212523\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212523 (PHOSPHORUS INORGANIC (PHOSPHATE)) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212523","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2324,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.58"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.518179 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212531\nunitConceptId =     8753\nplausibleValueHigh =            8.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212531\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            8.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212531\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212531 (POTASSIUM; SERUM, PLASMA OR WHOLE BLOOD) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than            8.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212531","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2325,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.59"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.725420 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212531\nunitConceptId =     9557\nplausibleValueHigh =            8.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212531\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            8.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212531\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212531 (POTASSIUM; SERUM, PLASMA OR WHOLE BLOOD) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value higher than            8.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212531","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2326,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.60"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.888069 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212539\nunitConceptId =     8842\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212539\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212539\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212539 (PROLACTIN) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212539","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2327,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.61"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.719639 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212542\nunitConceptId =     8840\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212542\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212542\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212542 (PROSTATE SPECIFIC ANTIGEN (PSA); TOTAL) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212542","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2328,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.62"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.088164 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212542\nunitConceptId =     8842\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212542\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212542\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212542 (PROSTATE SPECIFIC ANTIGEN (PSA); TOTAL) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212542","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2329,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.63"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.634280 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212585\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212585\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212585\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212585 (TESTOSTERONE; TOTAL) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212585","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2330,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.64"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.857184 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212585\nunitConceptId =     8817\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212585\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212585\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212585 (TESTOSTERONE; TOTAL) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212585","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2331,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.65"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.770366 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212593\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212593\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212593\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212593 (THYROID STIMULATING HORMONE (TSH)) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212593","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2332,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.66"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.074360 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212600\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212600\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212600\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212600 (TRIGLYCERIDES) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212600","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2333,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.67"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.738244 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212600\nunitConceptId =     8840\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212600\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212600\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212600 (TRIGLYCERIDES) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212600","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2334,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.68"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.503349 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212643\nunitConceptId =     8713\nplausibleValueHigh =           36.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212643\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           36.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212643\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212643 (BLOOD COUNT; HEMOGLOBIN (HGB)) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than           36.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212643","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2335,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.69"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.817790 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212643\nunitConceptId =     8837\nplausibleValueHigh =          319.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212643\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          319.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212643\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212643 (BLOOD COUNT; HEMOGLOBIN (HGB)) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value higher than          319.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212643","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2336,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.70"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.124711 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212643\nunitConceptId =     8840\nplausibleValueHigh =           36.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212643\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           36.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212643\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212643 (BLOOD COUNT; HEMOGLOBIN (HGB)) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than           36.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212643","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2337,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.71"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.556089 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212742\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212742\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212742\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212742 (THROMBOPLASTIN TIME, PARTIAL (PTT); PLASMA OR WHOLE BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212742","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2338,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.72"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.503022 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000034\nunitConceptId =     8723\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000034\n\t\tand m.unit_concept_id =     8723\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000034\n\tand unit_concept_id =     8723\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000034 (MICROALBUMIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8723 (MILLIGRAM PER GRAM), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000034","UNIT_CONCEPT_ID":"    8723","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2339,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.73"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.771991 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000034\nunitConceptId =     8751\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000034\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000034\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000034 (MICROALBUMIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000034","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2340,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.74"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.909927 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000034\nunitConceptId =     8837\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000034\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000034\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000034 (MICROALBUMIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000034","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2341,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.75"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.909483 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000034\nunitConceptId =     8838\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000034\n\t\tand m.unit_concept_id =     8838\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000034\n\tand unit_concept_id =     8838\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000034 (MICROALBUMIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8838 (MICROGRAM PER MILLIGRAM), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000034","UNIT_CONCEPT_ID":"    8838","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2342,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.76"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.702918 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000034\nunitConceptId =     8840\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000034\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000034\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000034 (MICROALBUMIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000034","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2343,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.77"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.419255 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000034\nunitConceptId =     8859\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000034\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000034\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000034 (MICROALBUMIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000034","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2344,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.78"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.088014 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000185\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000185\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000185\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000185 (IRON SATURATION [MASS FRACTION] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000185","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2345,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.79"},{"NUM_VIOLATED_ROWS":12,"PCT_VIOLATED_ROWS":0.0232,"NUM_DENOMINATOR_ROWS":518,"EXECUTION_TIME":"1.986822 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000483\nunitConceptId =     8840\nplausibleValueHigh =          300.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000483\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          300.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000483\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000483 (GLUCOSE [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          300.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000483","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2346,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.80"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.901662 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000551\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000551\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000551\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000551 (THYROXINE (T4) FREE INDEX IN SERUM OR PLASMA BY CALCULATION) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000551","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2347,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.81"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.103843 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000593\nunitConceptId =     8725\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000593\n\t\tand m.unit_concept_id =     8725\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000593\n\tand unit_concept_id =     8725\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000593 (COBALAMIN (VITAMIN B12) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8725 (NANOGRAM PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000593","UNIT_CONCEPT_ID":"    8725","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2348,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.82"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.636097 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000593\nunitConceptId =     8729\nplausibleValueHigh =          600.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000593\n\t\tand m.unit_concept_id =     8729\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          600.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000593\n\tand unit_concept_id =     8729\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000593 (COBALAMIN (VITAMIN B12) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8729 (PICOMOLE PER LITER), the number and percent of records that have a value higher than          600.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000593","UNIT_CONCEPT_ID":"    8729","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2349,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.83"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.588190 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000593\nunitConceptId =     8736\nplausibleValueHigh =          346.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000593\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          346.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000593\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000593 (COBALAMIN (VITAMIN B12) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value higher than          346.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000593","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2350,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.84"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.521539 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000593\nunitConceptId =     8845\nplausibleValueHigh =         1200.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000593\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1200.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000593\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000593 (COBALAMIN (VITAMIN B12) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value higher than         1200.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000593","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2351,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.85"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.883398 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000620\nunitConceptId =     8636\nplausibleValueHigh =            4.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000620\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            4.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000620\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000620 (COMPLEMENT C3 [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value higher than            4.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000620","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2352,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.86"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.433384 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000620\nunitConceptId =     8751\nplausibleValueHigh =         2000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000620\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000620\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000620 (COMPLEMENT C3 [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value higher than         2000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000620","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2353,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.87"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.903077 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000620\nunitConceptId =     8840\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000620\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000620\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000620 (COMPLEMENT C3 [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000620","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2354,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.88"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.172040 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId =     8510\nplausibleValueHigh =           11.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id =     8510\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           11.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id =     8510\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8510 (UNIT), the number and percent of records that have a value higher than           11.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"    8510","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2355,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.89"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.618428 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2356,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.90"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.071001 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId =     8647\nplausibleValueHigh =        10000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >        10000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value higher than        10000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2357,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.91"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.262868 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId =     8686\nplausibleValueHigh =         9000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id =     8686\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         9000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id =     8686\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8686 (CUBIC MILLIMETER), the number and percent of records that have a value higher than         9000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"    8686","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2358,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.92"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.768776 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId =     8816\nplausibleValueHigh =           11.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id =     8816\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           11.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id =     8816\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8816 (MILLION PER MILLILITER), the number and percent of records that have a value higher than           11.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"    8816","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2359,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.93"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.875983 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId =     8840\nplausibleValueHigh =          150.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          150.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          150.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2360,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.94"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":32,"EXECUTION_TIME":"2.128015 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId =     8848\nplausibleValueHigh =           11.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           11.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than           11.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2361,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.95"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.072262 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId =     8961\nplausibleValueHigh =           11.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           11.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value higher than           11.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2362,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.96"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.988604 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId =     9436\nplausibleValueHigh =          180.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id =     9436\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          180.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id =     9436\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9436 (THOUSAND PER MILLILITER), the number and percent of records that have a value higher than          180.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"    9436","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2363,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.97"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.934579 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId = 44777596\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id = 44777596\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id = 44777596\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID 44777596 (GRAM OF CREATININE), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"44777596","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2364,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.98"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.719114 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000905\nunitConceptId = 44777602\nplausibleValueHigh =          150.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000905\n\t\tand m.unit_concept_id = 44777602\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          150.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000905\n\tand unit_concept_id = 44777602\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000905 (LEUKOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID 44777602 (KILOPASCAL), the number and percent of records that have a value higher than          150.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000905","UNIT_CONCEPT_ID":"44777602","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2365,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.99"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.903958 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2366,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.100"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.788667 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8564\nplausibleValueHigh =           35.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8564\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           35.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8564\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8564 (PICOGRAM), the number and percent of records that have a value higher than           35.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8564","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2367,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.101"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.687120 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8576\nplausibleValueHigh =           17.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8576\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           17.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8576\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8576 (MILLIGRAM), the number and percent of records that have a value higher than           17.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8576","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2368,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.102"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.966301 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8582\nplausibleValueHigh =          110.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8582\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          110.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8582\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8582 (CENTIMETER), the number and percent of records that have a value higher than          110.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8582","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2369,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.103"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.934681 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8583\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8583\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8583\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8583 (FEMTOLITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8583","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2370,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.104"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.672678 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8587\nplausibleValueHigh =           60.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8587\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           60.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8587\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8587 (MILLILITER), the number and percent of records that have a value higher than           60.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8587","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2371,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.105"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.888101 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8636\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2372,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.106"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":284,"EXECUTION_TIME":"2.089280 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8713\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2373,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.107"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.665204 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8739\nplausibleValueHigh =           14.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8739\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           14.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8739\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8739 (POUND (US)), the number and percent of records that have a value higher than           14.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8739","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2374,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.108"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.709722 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8753\nplausibleValueHigh =            6.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            6.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than            6.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2375,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.109"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.988542 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     8837\nplausibleValueHigh =           15.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           15.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value higher than           15.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2376,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.110"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.151135 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     9245\nplausibleValueHigh =           15.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     9245\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           15.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     9245\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9245 (PER DECILITER), the number and percent of records that have a value higher than           15.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    9245","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2377,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.111"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.818520 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     9373\nplausibleValueHigh =         4000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     9373\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         4000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     9373\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9373 (OUNCE (AVOIRDUPOIS)), the number and percent of records that have a value higher than         4000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    9373","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2378,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.112"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819708 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     9384\nplausibleValueHigh =           17.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     9384\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           17.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     9384\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9384 (POINT), the number and percent of records that have a value higher than           17.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    9384","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2379,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.113"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.420907 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     9529\nplausibleValueHigh =          115.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     9529\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          115.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     9529\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9529 (KILOGRAM), the number and percent of records that have a value higher than          115.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    9529","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2380,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.114"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.480365 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     9546\nplausibleValueHigh =           15.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     9546\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           15.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     9546\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9546 (METER), the number and percent of records that have a value higher than           15.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    9546","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2381,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.115"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.634815 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3000963\nunitConceptId =     9562\nplausibleValueHigh =           20.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3000963\n\t\tand m.unit_concept_id =     9562\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           20.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3000963\n\tand unit_concept_id =     9562\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3000963 (HEMOGLOBIN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9562 (MILLIGRAM PER KILOGRAM), the number and percent of records that have a value higher than           20.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3000963","UNIT_CONCEPT_ID":"    9562","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2382,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.116"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.172379 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001122\nunitConceptId =     8510\nplausibleValueHigh =          400.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001122\n\t\tand m.unit_concept_id =     8510\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          400.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001122\n\tand unit_concept_id =     8510\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001122 (FERRITIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8510 (UNIT), the number and percent of records that have a value higher than          400.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001122","UNIT_CONCEPT_ID":"    8510","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2383,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.117"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.904564 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001122\nunitConceptId =     8748\nplausibleValueHigh =          500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001122\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001122\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001122 (FERRITIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value higher than          500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001122","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2384,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.118"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.887379 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001122\nunitConceptId =     8842\nplausibleValueHigh =          400.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001122\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          400.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001122\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001122 (FERRITIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than          400.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001122","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2385,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.119"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.004457 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001247\nunitConceptId =     8848\nplausibleValueHigh =           42.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001247\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           42.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001247\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001247 (COMMON RAGWEED IGE AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than           42.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001247","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2386,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.120"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.788362 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001308\nunitConceptId =     8753\nplausibleValueHigh =           11.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001308\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           11.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001308\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001308 (CHOLESTEROL IN LDL [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than           11.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001308","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2387,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.121"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.850981 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001308\nunitConceptId =     8736\nplausibleValueHigh =         2500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001308\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001308\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001308 (CHOLESTEROL IN LDL [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value higher than         2500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001308","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2388,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.122"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.826197 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001318\nunitConceptId =     8554\nplausibleValueHigh =           75.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001318\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           75.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001318\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001318 (CHOLESTEROL.TOTAL/CHOLESTEROL IN HDL [PERCENTILE]) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than           75.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001318","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2389,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.123"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.102835 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001420\nunitConceptId =     8753\nplausibleValueHigh =            3.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001420\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            3.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001420\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001420 (MAGNESIUM [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than            3.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001420","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2390,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.124"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.817347 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001420\nunitConceptId =     8840\nplausibleValueHigh =            3.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001420\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            3.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001420\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001420 (MAGNESIUM [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than            3.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001420","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2391,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.125"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.782309 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001420\nunitConceptId =     9557\nplausibleValueHigh =            3.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001420\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            3.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001420\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001420 (MAGNESIUM [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value higher than            3.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001420","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2392,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.126"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819079 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001604\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001604\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001604\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001604 (MONOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001604","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2393,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.127"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.640630 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001604\nunitConceptId =     8848\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001604\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001604\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001604 (MONOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001604","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2394,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.128"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.850142 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001784\nunitConceptId =     8554\nplausibleValueHigh =           45.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001784\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           45.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001784\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001784 (PROSTATE SPECIFIC AG FREE/PROSTATE SPECIFIC AG.TOTAL IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than           45.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001784","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2395,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.129"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803705 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001802\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001802\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001802\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001802 (MICROALBUMIN/CREATININE [MASS RATIO] IN URINE) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001802","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2396,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.130"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.925204 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001802\nunitConceptId =     8723\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001802\n\t\tand m.unit_concept_id =     8723\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001802\n\tand unit_concept_id =     8723\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001802 (MICROALBUMIN/CREATININE [MASS RATIO] IN URINE) and UNIT_CONCEPT_ID     8723 (MILLIGRAM PER GRAM), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001802","UNIT_CONCEPT_ID":"    8723","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2397,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.131"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.557492 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001802\nunitConceptId =     8838\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001802\n\t\tand m.unit_concept_id =     8838\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001802\n\tand unit_concept_id =     8838\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001802 (MICROALBUMIN/CREATININE [MASS RATIO] IN URINE) and UNIT_CONCEPT_ID     8838 (MICROGRAM PER MILLIGRAM), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001802","UNIT_CONCEPT_ID":"    8838","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2398,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.132"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.580014 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3001802\nunitConceptId =     9017\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3001802\n\t\tand m.unit_concept_id =     9017\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3001802\n\tand unit_concept_id =     9017\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3001802 (MICROALBUMIN/CREATININE [MASS RATIO] IN URINE) and UNIT_CONCEPT_ID     9017 (MILLIGRAM PER GRAM OF CREATININE), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3001802","UNIT_CONCEPT_ID":"    9017","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2399,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.133"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.919671 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002009\nunitConceptId =     8840\nplausibleValueHigh =          150.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002009\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          150.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002009\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002009 (GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA --12 HOURS FASTING) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          150.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002009","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2400,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.134"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.684218 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002030\nunitConceptId =     8519\nplausibleValueHigh =         1200.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002030\n\t\tand m.unit_concept_id =     8519\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1200.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002030\n\tand unit_concept_id =     8519\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002030 (LYMPHOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8519 (LITER), the number and percent of records that have a value higher than         1200.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002030","UNIT_CONCEPT_ID":"    8519","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2401,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.135"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":32,"EXECUTION_TIME":"2.190319 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002030\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002030\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002030\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002030 (LYMPHOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002030","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2402,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.136"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.089076 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002030\nunitConceptId =     8583\nplausibleValueHigh =         3300.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002030\n\t\tand m.unit_concept_id =     8583\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         3300.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002030\n\tand unit_concept_id =     8583\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002030 (LYMPHOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8583 (FEMTOLITER), the number and percent of records that have a value higher than         3300.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002030","UNIT_CONCEPT_ID":"    8583","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2403,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.137"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.788020 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002030\nunitConceptId =     8647\nplausibleValueHigh =         3100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002030\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         3100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002030\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002030 (LYMPHOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value higher than         3100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002030","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2404,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.138"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.650957 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002030\nunitConceptId =     8686\nplausibleValueHigh =            3.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002030\n\t\tand m.unit_concept_id =     8686\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            3.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002030\n\tand unit_concept_id =     8686\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002030 (LYMPHOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8686 (CUBIC MILLIMETER), the number and percent of records that have a value higher than            3.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002030","UNIT_CONCEPT_ID":"    8686","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2405,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.139"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.336234 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002030\nunitConceptId =     8840\nplausibleValueHigh =          500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002030\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002030\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002030 (LYMPHOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002030","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2406,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.140"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.887198 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002030\nunitConceptId =     9234\nplausibleValueHigh =           35.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002030\n\t\tand m.unit_concept_id =     9234\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           35.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002030\n\tand unit_concept_id =     9234\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002030 (LYMPHOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     9234 (VOLUME PERCENT), the number and percent of records that have a value higher than           35.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002030","UNIT_CONCEPT_ID":"    9234","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2407,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.141"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.618901 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002030\nunitConceptId =     9665\nplausibleValueHigh =         2300.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002030\n\t\tand m.unit_concept_id =     9665\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2300.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002030\n\tand unit_concept_id =     9665\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002030 (LYMPHOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     9665 (MICROLITER), the number and percent of records that have a value higher than         2300.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002030","UNIT_CONCEPT_ID":"    9665","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2408,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.142"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.861343 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002091\nunitConceptId =     8753\nplausibleValueHigh =      9999999.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002091\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >      9999999.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002091\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002091 (CHORIOGONADOTROPIN [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than      9999999.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002091","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2409,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.143"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.714722 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002109\nunitConceptId =     8523\nplausibleValueHigh =           28.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002109\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           28.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002109\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002109 (CHOLESTEROL IN LDL/CHOLESTEROL IN HDL [MASS RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value higher than           28.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002109","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2410,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.144"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.779219 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002112\nunitConceptId =     8554\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002112\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002112\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002112 (FOLATE [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002112","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2411,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.145"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.800725 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002112\nunitConceptId =     8842\nplausibleValueHigh =          600.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002112\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          600.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002112\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002112 (FOLATE [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than          600.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002112","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2412,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.146"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.968533 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002131\nunitConceptId =     8842\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002131\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002131\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002131 (PROSTATE SPECIFIC AG [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002131","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2413,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.147"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.645317 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002400\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002400\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002400\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002400 (IRON [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002400","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2414,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.148"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.604827 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002400\nunitConceptId =     8749\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002400\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002400\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002400 (IRON [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002400","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2415,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.149"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.701497 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002400\nunitConceptId =     8837\nplausibleValueHigh =          150.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002400\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          150.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002400\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002400 (IRON [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value higher than          150.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002400","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2416,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.150"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.402981 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002417\nunitConceptId =     8555\nplausibleValueHigh =          170.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002417\n\t\tand m.unit_concept_id =     8555\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          170.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002417\n\tand unit_concept_id =     8555\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002417 (PROTHROMBIN TIME (PT) IN BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8555 (SECOND), the number and percent of records that have a value higher than          170.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002417","UNIT_CONCEPT_ID":"    8555","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2417,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.151"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.672421 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002417\nunitConceptId =     9212\nplausibleValueHigh =          170.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002417\n\t\tand m.unit_concept_id =     9212\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          170.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002417\n\tand unit_concept_id =     9212\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002417 (PROTHROMBIN TIME (PT) IN BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     9212 (SECOND), the number and percent of records that have a value higher than          170.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002417","UNIT_CONCEPT_ID":"    9212","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2418,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.152"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.703153 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002617\nunitConceptId =     8751\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002617\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002617\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002617 (ACETAMINOPHEN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002617","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2419,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.153"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.003672 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002617\nunitConceptId =     8842\nplausibleValueHigh =            6.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002617\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            6.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002617\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002617 (ACETAMINOPHEN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than            6.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002617","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2420,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.154"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.741237 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002617\nunitConceptId =     8859\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002617\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002617\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002617 (ACETAMINOPHEN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002617","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2421,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.155"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.757159 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002809\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002809\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002809\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002809 (RETICULOCYTES/100 ERYTHROCYTES IN BLOOD BY MANUAL) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002809","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2422,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.156"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.919119 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3002971\nunitConceptId =     8525\nplausibleValueHigh =          640.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3002971\n\t\tand m.unit_concept_id =     8525\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          640.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3002971\n\tand unit_concept_id =     8525\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3002971 (NUCLEAR AB [TITER] IN SERUM BY IMMUNOFLUORESCENCE) and UNIT_CONCEPT_ID     8525 (TITER), the number and percent of records that have a value higher than          640.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3002971","UNIT_CONCEPT_ID":"    8525","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2423,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.157"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.258013 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003215\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003215\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003215\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003215 (LYMPHOCYTES [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003215","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2424,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.158"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.934234 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003215\nunitConceptId =     8647\nplausibleValueHigh =         3000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003215\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         3000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003215\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003215 (LYMPHOCYTES [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value higher than         3000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003215","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2425,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.159"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.889123 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003215\nunitConceptId =     8848\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003215\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003215\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003215 (LYMPHOCYTES [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003215","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2426,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.160"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.034666 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003282\nunitConceptId =     8848\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003282\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003282\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003282 (LEUKOCYTES [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003282","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2427,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.161"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.303963 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003338\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003338\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003338\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003338 (MCHC [MASS/VOLUME]) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003338","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2428,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.162"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.850533 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003338\nunitConceptId =     8713\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003338\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003338\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003338 (MCHC [MASS/VOLUME]) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003338","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2429,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.163"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.381778 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003458\nunitConceptId =     8753\nplausibleValueHigh =           26.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003458\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           26.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003458\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003458 (PHOSPHATE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than           26.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003458","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2430,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.164"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.433574 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003458\nunitConceptId =     8840\nplausibleValueHigh =           17.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003458\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           17.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003458\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003458 (PHOSPHATE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than           17.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003458","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2431,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.165"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.919522 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003624\nunitConceptId =     8840\nplausibleValueHigh =          500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003624\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003624\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003624 (LIPIDS [MASS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003624","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2432,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.166"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.555791 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003785\nunitConceptId =     8510\nplausibleValueHigh =            6.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003785\n\t\tand m.unit_concept_id =     8510\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            6.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003785\n\tand unit_concept_id =     8510\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003785 (CARCINOEMBRYONIC AG [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8510 (UNIT), the number and percent of records that have a value higher than            6.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003785","UNIT_CONCEPT_ID":"    8510","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2433,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.167"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.688506 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003785\nunitConceptId =     8748\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003785\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003785\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003785 (CARCINOEMBRYONIC AG [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003785","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2434,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.168"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803835 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3003785\nunitConceptId =     8842\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3003785\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3003785\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3003785 (CARCINOEMBRYONIC AG [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3003785","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2435,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.169"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.219758 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004077\nunitConceptId =     8840\nplausibleValueHigh =          250.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004077\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          250.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004077\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004077 (GLUCOSE [MASS/VOLUME] IN CAPILLARY BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          250.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004077","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2436,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.170"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.965023 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004239\nunitConceptId =     8795\nplausibleValueHigh =          335.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004239\n\t\tand m.unit_concept_id =     8795\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          335.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004239\n\tand unit_concept_id =     8795\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004239 (CREATININE [MASS/TIME] IN 24 HOUR URINE) and UNIT_CONCEPT_ID     8795 (MILLILITER PER MINUTE), the number and percent of records that have a value higher than          335.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004239","UNIT_CONCEPT_ID":"    8795","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2437,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.171"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.988712 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004239\nunitConceptId =     8807\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004239\n\t\tand m.unit_concept_id =     8807\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004239\n\tand unit_concept_id =     8807\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004239 (CREATININE [MASS/TIME] IN 24 HOUR URINE) and UNIT_CONCEPT_ID     8807 (GRAM PER 24 HOURS), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004239","UNIT_CONCEPT_ID":"    8807","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2438,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.172"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.664805 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004239\nunitConceptId =     8909\nplausibleValueHigh =         4000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004239\n\t\tand m.unit_concept_id =     8909\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         4000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004239\n\tand unit_concept_id =     8909\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004239 (CREATININE [MASS/TIME] IN 24 HOUR URINE) and UNIT_CONCEPT_ID     8909 (MILLIGRAM PER 24 HOURS), the number and percent of records that have a value higher than         4000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004239","UNIT_CONCEPT_ID":"    8909","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2439,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.173"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.609678 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004248\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004248\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004248\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004248 (SEX HORMONE BINDING GLOBULIN [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004248","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2440,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.174"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.779778 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004248\nunitConceptId =     8736\nplausibleValueHigh =          200.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004248\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          200.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004248\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004248 (SEX HORMONE BINDING GLOBULIN [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value higher than          200.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004248","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2441,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.175"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":18032,"EXECUTION_TIME":"1.850492 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004249\nunitConceptId =     8876\nplausibleValueHigh =          250.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004249\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          250.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004249\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004249 (SYSTOLIC BLOOD PRESSURE) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value higher than          250.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004249","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2442,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.176"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.501500 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004295\nunitConceptId =     8840\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004295\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004295\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004295 (UREA NITROGEN [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004295","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2443,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.177"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.815304 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004327\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004327\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004327\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004327 (LYMPHOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004327","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2444,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.178"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.114149 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004327\nunitConceptId =     8647\nplausibleValueHigh =        10000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004327\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >        10000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004327\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004327 (LYMPHOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value higher than        10000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004327","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2445,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.179"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.470084 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004327\nunitConceptId =     8816\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004327\n\t\tand m.unit_concept_id =     8816\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004327\n\tand unit_concept_id =     8816\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004327 (LYMPHOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8816 (MILLION PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004327","UNIT_CONCEPT_ID":"    8816","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2446,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.180"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.602921 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004327\nunitConceptId =     8848\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004327\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004327\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004327 (LYMPHOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004327","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2447,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.181"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.565465 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004327\nunitConceptId =     8961\nplausibleValueHigh =            4.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004327\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            4.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004327\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004327 (LYMPHOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value higher than            4.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004327","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2448,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.182"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.649338 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004327\nunitConceptId =     9436\nplausibleValueHigh =            1.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004327\n\t\tand m.unit_concept_id =     9436\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            1.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004327\n\tand unit_concept_id =     9436\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004327 (LYMPHOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9436 (THOUSAND PER MILLILITER), the number and percent of records that have a value higher than            1.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004327","UNIT_CONCEPT_ID":"    9436","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2449,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.183"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.847238 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004410\nunitConceptId =     8554\nplausibleValueHigh =           15.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004410\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           15.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004410\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004410 (HEMOGLOBIN A1C/HEMOGLOBIN.TOTAL IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than           15.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004410","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2450,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.184"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803736 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004410\nunitConceptId =     9579\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004410\n\t\tand m.unit_concept_id =     9579\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004410\n\tand unit_concept_id =     9579\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004410 (HEMOGLOBIN A1C/HEMOGLOBIN.TOTAL IN BLOOD) and UNIT_CONCEPT_ID     9579 (MILLIMOLE PER MOLE), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004410","UNIT_CONCEPT_ID":"    9579","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2451,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.185"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.235918 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004722\nunitConceptId =     8842\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004722\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004722\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004722 (PROLACTIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004722","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2452,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.186"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819533 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004789\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004789\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004789\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004789 (TRANSFERRIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004789","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2453,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.187"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.005472 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004789\nunitConceptId =     8636\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004789\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004789\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004789 (TRANSFERRIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004789","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2454,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.188"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"5.543843 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004789\nunitConceptId =     8749\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004789\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004789\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004789 (TRANSFERRIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004789","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2455,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.189"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.729495 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004789\nunitConceptId =     8840\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004789\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004789\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004789 (TRANSFERRIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004789","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2456,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.190"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.623095 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004905\nunitConceptId =     8645\nplausibleValueHigh =          120.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004905\n\t\tand m.unit_concept_id =     8645\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          120.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004905\n\tand unit_concept_id =     8645\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004905 (LIPASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8645 (UNIT PER LITER), the number and percent of records that have a value higher than          120.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004905","UNIT_CONCEPT_ID":"    8645","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2457,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.191"},{"NUM_VIOLATED_ROWS":68,"PCT_VIOLATED_ROWS":0.2857,"NUM_DENOMINATOR_ROWS":238,"EXECUTION_TIME":"1.781585 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3004905\nunitConceptId =     8923\nplausibleValueHigh =           70.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3004905\n\t\tand m.unit_concept_id =     8923\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           70.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3004905\n\tand unit_concept_id =     8923\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3004905 (LIPASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8923 (INTERNATIONAL UNIT PER LITER), the number and percent of records that have a value higher than           70.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3004905","UNIT_CONCEPT_ID":"    8923","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2458,"FAILED":1,"THRESHOLD_VALUE":5,"_row":"19.192"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.051353 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005013\nunitConceptId =     8748\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005013\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005013\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005013 (PROSTATE SPECIFIC AG FREE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005013","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2459,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.193"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.905168 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005013\nunitConceptId =     8842\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005013\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005013\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005013 (PROSTATE SPECIFIC AG FREE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005013","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2460,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.194"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.678905 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005105\nunitConceptId =     8848\nplausibleValueHigh =          326.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005105\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          326.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005105\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005105 (BLASTS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than          326.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005105","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2461,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.195"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.441586 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005168\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005168\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005168\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005168 (IRON BINDING CAPACITY.UNSATURATED [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005168","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2462,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.196"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.471217 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005168\nunitConceptId =     8837\nplausibleValueHigh =          500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005168\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005168\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005168 (IRON BINDING CAPACITY.UNSATURATED [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value higher than          500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005168","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2463,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.197"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.855882 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005424\nunitConceptId =     8617\nplausibleValueHigh =           52.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005424\n\t\tand m.unit_concept_id =     8617\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           52.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005424\n\tand unit_concept_id =     8617\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005424 (BODY SURFACE AREA) and UNIT_CONCEPT_ID     8617 (SQUARE METER), the number and percent of records that have a value higher than           52.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005424","UNIT_CONCEPT_ID":"    8617","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2464,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.198"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.888019 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005446\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005446\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005446\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005446 (HEMOGLOBIN A1/HEMOGLOBIN.TOTAL IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005446","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2465,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.199"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.669538 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005456\nunitConceptId =     8753\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005456\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005456\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005456 (POTASSIUM [MOLES/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005456","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2466,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.200"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":598,"EXECUTION_TIME":"1.948471 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005456\nunitConceptId =     9557\nplausibleValueHigh =            8.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005456\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            8.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005456\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005456 (POTASSIUM [MOLES/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value higher than            8.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005456","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2467,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.201"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.936026 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005673\nunitConceptId =     8554\nplausibleValueHigh =           20.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005673\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           20.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005673\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005673 (HEMOGLOBIN A1C/HEMOGLOBIN.TOTAL IN BLOOD BY HPLC) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than           20.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005673","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2468,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.202"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.571305 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005770\nunitConceptId =     8795\nplausibleValueHigh =          194.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005770\n\t\tand m.unit_concept_id =     8795\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          194.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005770\n\tand unit_concept_id =     8795\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005770 (CREATININE RENAL CLEARANCE IN 24 HOUR) and UNIT_CONCEPT_ID     8795 (MILLILITER PER MINUTE), the number and percent of records that have a value higher than          194.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005770","UNIT_CONCEPT_ID":"    8795","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2469,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.203"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.787814 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005770\nunitConceptId =     9117\nplausibleValueHigh =          206.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005770\n\t\tand m.unit_concept_id =     9117\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          206.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005770\n\tand unit_concept_id =     9117\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005770 (CREATININE RENAL CLEARANCE IN 24 HOUR) and UNIT_CONCEPT_ID     9117 (MILLILITER PER MINUTE PER 1.73 SQUARE METER), the number and percent of records that have a value higher than          206.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005770","UNIT_CONCEPT_ID":"    9117","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2470,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.204"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.086848 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005770\nunitConceptId = 44777614\nplausibleValueHigh =            4.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005770\n\t\tand m.unit_concept_id = 44777614\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            4.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005770\n\tand unit_concept_id = 44777614\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005770 (CREATININE RENAL CLEARANCE IN 24 HOUR) and UNIT_CONCEPT_ID 44777614 (MILLILITER PER SECOND), the number and percent of records that have a value higher than            4.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005770","UNIT_CONCEPT_ID":"44777614","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2471,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.205"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.439144 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3005785\nunitConceptId =     8842\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3005785\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3005785\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3005785 (CREATINE KINASE.MB [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3005785","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2472,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.206"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.703863 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006140\nunitConceptId =     8749\nplausibleValueHigh =           46.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006140\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           46.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006140\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006140 (BILIRUBIN.TOTAL [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value higher than           46.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006140","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2473,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.207"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.487559 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006140\nunitConceptId =     8840\nplausibleValueHigh =           11.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006140\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           11.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006140\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006140 (BILIRUBIN.TOTAL [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than           11.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006140","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2474,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.208"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.550521 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006315\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006315\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006315\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006315 (BASOPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006315","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2475,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.209"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.119562 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006315\nunitConceptId =     8848\nplausibleValueHigh =            1.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006315\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            1.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006315\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006315 (BASOPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than            1.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006315","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2476,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.210"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.757679 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006315\nunitConceptId =     8961\nplausibleValueHigh =            1.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006315\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            1.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006315\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006315 (BASOPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value higher than            1.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006315","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2477,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.211"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.464957 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006315\nunitConceptId =     9435\nplausibleValueHigh =            1.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006315\n\t\tand m.unit_concept_id =     9435\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            1.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006315\n\tand unit_concept_id =     9435\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006315 (BASOPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9435 (THOUSAND PER LITER), the number and percent of records that have a value higher than            1.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006315","UNIT_CONCEPT_ID":"    9435","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2478,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.212"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.671934 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006504\nunitConceptId =     8554\nplausibleValueHigh =            6.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006504\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            6.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006504\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006504 (EOSINOPHILS/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than            6.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006504","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2479,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.213"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.688397 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006504\nunitConceptId =     8647\nplausibleValueHigh =          400.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006504\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          400.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006504\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006504 (EOSINOPHILS/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value higher than          400.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006504","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2480,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.214"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.120817 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006504\nunitConceptId =     8686\nplausibleValueHigh =            1.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006504\n\t\tand m.unit_concept_id =     8686\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            1.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006504\n\tand unit_concept_id =     8686\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006504 (EOSINOPHILS/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8686 (CUBIC MILLIMETER), the number and percent of records that have a value higher than            1.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006504","UNIT_CONCEPT_ID":"    8686","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2481,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.215"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.817729 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006504\nunitConceptId =     9234\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006504\n\t\tand m.unit_concept_id =     9234\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006504\n\tand unit_concept_id =     9234\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006504 (EOSINOPHILS/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     9234 (VOLUME PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006504","UNIT_CONCEPT_ID":"    9234","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2482,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.216"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.734258 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006504\nunitConceptId =     9665\nplausibleValueHigh =          500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006504\n\t\tand m.unit_concept_id =     9665\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006504\n\tand unit_concept_id =     9665\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006504 (EOSINOPHILS/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     9665 (MICROLITER), the number and percent of records that have a value higher than          500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006504","UNIT_CONCEPT_ID":"    9665","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2483,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.217"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.497576 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006576\nunitConceptId =     8753\nplausibleValueHigh =           47.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006576\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           47.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006576\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006576 (BICARBONATE [MOLES/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than           47.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006576","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2484,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.218"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.215940 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006576\nunitConceptId =     9556\nplausibleValueHigh =           55.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006576\n\t\tand m.unit_concept_id =     9556\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           55.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006576\n\tand unit_concept_id =     9556\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006576 (BICARBONATE [MOLES/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9556 (MILLIEQUIVALENT PER KILOGRAM), the number and percent of records that have a value higher than           55.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006576","UNIT_CONCEPT_ID":"    9556","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2485,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.219"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.550604 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006576\nunitConceptId =     9557\nplausibleValueHigh =           55.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006576\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           55.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006576\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006576 (BICARBONATE [MOLES/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value higher than           55.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006576","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2486,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.220"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.924220 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006717\nunitConceptId =     8840\nplausibleValueHigh =          200.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006717\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          200.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006717\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006717 (GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA --2 HOURS POST 100 G GLUCOSE PO) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          200.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006717","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2487,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.221"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.873252 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006734\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006734\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006734\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006734 (WHITE OAK IGE AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006734","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2488,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.222"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.793581 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006906\nunitConceptId =     8753\nplausibleValueHigh =           81.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006906\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           81.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006906\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006906 (CALCIUM [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than           81.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006906","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2489,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.223"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819317 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006906\nunitConceptId =     8840\nplausibleValueHigh =           13.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006906\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           13.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006906\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006906 (CALCIUM [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than           13.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006906","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2490,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.224"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.886979 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006906\nunitConceptId =     8845\nplausibleValueHigh =           13.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006906\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           13.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006906\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006906 (CALCIUM [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value higher than           13.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006906","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2491,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.225"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.763161 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006906\nunitConceptId =     8861\nplausibleValueHigh =           13.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006906\n\t\tand m.unit_concept_id =     8861\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           13.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006906\n\tand unit_concept_id =     8861\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006906 (CALCIUM [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8861 (MILLIGRAM PER MILLILITER), the number and percent of records that have a value higher than           13.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006906","UNIT_CONCEPT_ID":"    8861","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2492,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.226"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.789312 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006923\nunitConceptId =     8554\nplausibleValueHigh =         2000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006923\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006923\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006923 (ALANINE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than         2000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006923","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2493,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.227"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.166858 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006923\nunitConceptId =     8645\nplausibleValueHigh =         2000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006923\n\t\tand m.unit_concept_id =     8645\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006923\n\tand unit_concept_id =     8645\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006923 (ALANINE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8645 (UNIT PER LITER), the number and percent of records that have a value higher than         2000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006923","UNIT_CONCEPT_ID":"    8645","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2494,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.228"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.686705 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006923\nunitConceptId =     8713\nplausibleValueHigh =         2000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006923\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006923\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006923 (ALANINE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than         2000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006923","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2495,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.229"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.633862 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006923\nunitConceptId =     8748\nplausibleValueHigh =         2000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006923\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006923\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006923 (ALANINE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value higher than         2000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006923","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2496,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.230"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.972086 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006923\nunitConceptId =     8753\nplausibleValueHigh =         2000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006923\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006923\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006923 (ALANINE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than         2000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006923","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2497,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.231"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.667450 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006923\nunitConceptId =     8837\nplausibleValueHigh =         2000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006923\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006923\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006923 (ALANINE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value higher than         2000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006923","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2498,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.232"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.886987 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006923\nunitConceptId =     8840\nplausibleValueHigh =         2000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006923\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006923\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006923 (ALANINE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than         2000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006923","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2499,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.233"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.804668 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006923\nunitConceptId =     8923\nplausibleValueHigh =         2000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006923\n\t\tand m.unit_concept_id =     8923\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006923\n\tand unit_concept_id =     8923\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006923 (ALANINE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8923 (INTERNATIONAL UNIT PER LITER), the number and percent of records that have a value higher than         2000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006923","UNIT_CONCEPT_ID":"    8923","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2500,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.234"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.686115 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3006923\nunitConceptId =     9648\nplausibleValueHigh =         2000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3006923\n\t\tand m.unit_concept_id =     9648\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3006923\n\tand unit_concept_id =     9648\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3006923 (ALANINE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9648 (UNIFIED ATOMIC MASS UNIT), the number and percent of records that have a value higher than         2000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3006923","UNIT_CONCEPT_ID":"    9648","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2501,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.235"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.855277 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007070\nunitConceptId =     8713\nplausibleValueHigh =            5.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007070\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            5.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007070\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007070 (CHOLESTEROL IN HDL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than            5.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007070","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2502,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.236"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.787394 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007070\nunitConceptId =     8749\nplausibleValueHigh =           43.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007070\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           43.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007070\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007070 (CHOLESTEROL IN HDL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value higher than           43.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007070","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2503,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.237"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.901819 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007070\nunitConceptId =     8840\nplausibleValueHigh =          150.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007070\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          150.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007070\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007070 (CHOLESTEROL IN HDL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          150.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007070","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2504,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.238"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.518597 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007070\nunitConceptId =     8753\nplausibleValueHigh =            5.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007070\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            5.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007070\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007070 (CHOLESTEROL IN HDL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than            5.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007070","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2505,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.239"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.835621 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007150\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007150\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007150\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007150 (CREATINE KINASE.MB/CREATINE KINASE.TOTAL IN SERUM OR PLASMA BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007150","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2506,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.240"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.740463 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007150\nunitConceptId =     8842\nplausibleValueHigh =          326.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007150\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          326.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007150\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007150 (CREATINE KINASE.MB/CREATINE KINASE.TOTAL IN SERUM OR PLASMA BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than          326.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007150","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2507,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.241"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803617 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007220\nunitConceptId =     8645\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007220\n\t\tand m.unit_concept_id =     8645\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007220\n\tand unit_concept_id =     8645\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007220 (CREATINE KINASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8645 (UNIT PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007220","UNIT_CONCEPT_ID":"    8645","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2508,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.242"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803890 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007220\nunitConceptId =     8842\nplausibleValueHigh =          455.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007220\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          455.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007220\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007220 (CREATINE KINASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than          455.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007220","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2509,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.243"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.710732 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007220\nunitConceptId =     8923\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007220\n\t\tand m.unit_concept_id =     8923\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007220\n\tand unit_concept_id =     8923\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007220 (CREATINE KINASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8923 (INTERNATIONAL UNIT PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007220","UNIT_CONCEPT_ID":"    8923","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2510,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.244"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.765004 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007263\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007263\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007263\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007263 (HEMOGLOBIN A1C/HEMOGLOBIN.TOTAL IN BLOOD BY CALCULATION) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007263","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2511,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.245"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.903141 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007332\nunitConceptId =     8840\nplausibleValueHigh =          250.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007332\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          250.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007332\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007332 (GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA --1 HOUR POST 75 G GLUCOSE PO) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          250.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007332","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2512,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.246"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.866475 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007359\nunitConceptId =     8840\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007359\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007359\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007359 (BILIRUBIN.INDIRECT [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007359","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2513,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.247"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.919309 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3007461\nunitConceptId =     8848\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3007461\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3007461\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3007461 (PLATELETS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3007461","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2514,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.248"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.487254 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3008295\nunitConceptId =     8605\nplausibleValueHigh =          420.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3008295\n\t\tand m.unit_concept_id =     8605\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          420.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3008295\n\tand unit_concept_id =     8605\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3008295 (OSMOLALITY OF SERUM OR PLASMA) and UNIT_CONCEPT_ID     8605 (MILLIOSMOLE), the number and percent of records that have a value higher than          420.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3008295","UNIT_CONCEPT_ID":"    8605","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2515,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.249"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":58,"EXECUTION_TIME":"1.788158 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3008295\nunitConceptId =     8862\nplausibleValueHigh =          420.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3008295\n\t\tand m.unit_concept_id =     8862\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          420.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3008295\n\tand unit_concept_id =     8862\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3008295 (OSMOLALITY OF SERUM OR PLASMA) and UNIT_CONCEPT_ID     8862 (MILLIOSMOLE PER KILOGRAM), the number and percent of records that have a value higher than          420.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3008295","UNIT_CONCEPT_ID":"    8862","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2516,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.250"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.433009 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3008295\nunitConceptId =     9577\nplausibleValueHigh =          420.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3008295\n\t\tand m.unit_concept_id =     9577\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          420.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3008295\n\tand unit_concept_id =     9577\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3008295 (OSMOLALITY OF SERUM OR PLASMA) and UNIT_CONCEPT_ID     9577 (MILLIMOLE PER KILOGRAM), the number and percent of records that have a value higher than          420.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3008295","UNIT_CONCEPT_ID":"    9577","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2517,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.251"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.880898 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3008295\nunitConceptId =     9591\nplausibleValueHigh =          420.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3008295\n\t\tand m.unit_concept_id =     9591\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          420.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3008295\n\tand unit_concept_id =     9591\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3008295 (OSMOLALITY OF SERUM OR PLASMA) and UNIT_CONCEPT_ID     9591 (MILLIOSMOLE PER LITER), the number and percent of records that have a value higher than          420.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3008295","UNIT_CONCEPT_ID":"    9591","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2518,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.252"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.750507 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3008342\nunitConceptId =     8554\nplausibleValueHigh =           75.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3008342\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           75.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3008342\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3008342 (NEUTROPHILS/100 LEUKOCYTES IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than           75.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3008342","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2519,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.253"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.003550 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3008598\nunitConceptId =     8817\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3008598\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3008598\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3008598 (THYROXINE (T4) FREE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3008598","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2520,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.254"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.903894 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3008893\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3008893\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3008893\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3008893 (TESTOSTERONE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3008893","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2521,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.255"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.834854 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3008893\nunitConceptId =     8817\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3008893\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3008893\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3008893 (TESTOSTERONE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3008893","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2522,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.256"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.304372 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009041\nunitConceptId =     8753\nplausibleValueHigh =            3.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009041\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            3.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009041\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009041 (CARDIOLIPIN IGG AB [UNITS/VOLUME] IN SERUM BY IMMUNOASSAY) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than            3.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009041","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2523,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.257"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.804073 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009041\nunitConceptId =     9100\nplausibleValueHigh =           39.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009041\n\t\tand m.unit_concept_id =     9100\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           39.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009041\n\tand unit_concept_id =     9100\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009041 (CARDIOLIPIN IGG AB [UNITS/VOLUME] IN SERUM BY IMMUNOASSAY) and UNIT_CONCEPT_ID     9100 (IGG PHOSPHOLIPID UNIT), the number and percent of records that have a value higher than           39.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009041","UNIT_CONCEPT_ID":"    9100","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2524,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.258"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.901719 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009201\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009201\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009201\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009201 (THYROTROPIN [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009201","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2525,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.259"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.733749 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009201\nunitConceptId =     8860\nplausibleValueHigh =           20.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009201\n\t\tand m.unit_concept_id =     8860\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           20.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009201\n\tand unit_concept_id =     8860\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009201 (THYROTROPIN [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8860 (MICROUNIT PER MILLILITER), the number and percent of records that have a value higher than           20.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009201","UNIT_CONCEPT_ID":"    8860","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2526,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.260"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.510923 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009201\nunitConceptId =     9040\nplausibleValueHigh =           20.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009201\n\t\tand m.unit_concept_id =     9040\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           20.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009201\n\tand unit_concept_id =     9040\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009201 (THYROTROPIN [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9040 (MILLI-INTERNATIONAL UNIT PER LITER), the number and percent of records that have a value higher than           20.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009201","UNIT_CONCEPT_ID":"    9040","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2527,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.261"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.926265 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009201\nunitConceptId = 44777578\nplausibleValueHigh =           20.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009201\n\t\tand m.unit_concept_id = 44777578\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           20.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009201\n\tand unit_concept_id = 44777578\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009201 (THYROTROPIN [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID 44777578 (MILLIUNIT PER LITER), the number and percent of records that have a value higher than           20.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009201","UNIT_CONCEPT_ID":"44777578","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2528,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.262"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.055736 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009306\nunitConceptId =     8748\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009306\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009306\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009306 (ALPHA-1-FETOPROTEIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009306","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2529,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.263"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.049673 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009306\nunitConceptId =     8842\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009306\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009306\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009306 (ALPHA-1-FETOPROTEIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009306","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2530,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.264"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.863207 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8510\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8510\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8510\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8510 (UNIT), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8510","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2531,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.265"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.616987 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8517\nplausibleValueHigh =           70.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8517\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           70.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8517\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8517 (FARAD), the number and percent of records that have a value higher than           70.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8517","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2532,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.266"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.857919 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8519\nplausibleValueHigh =           40.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8519\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           40.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8519\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8519 (LITER), the number and percent of records that have a value higher than           40.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8519","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2533,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.267"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.770392 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8523\nplausibleValueHigh =            0.50\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            0.50\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value higher than            0.50.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2534,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.268"},{"NUM_VIOLATED_ROWS":4,"PCT_VIOLATED_ROWS":0.0141,"NUM_DENOMINATOR_ROWS":284,"EXECUTION_TIME":"1.918333 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8554\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2535,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.269"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.854983 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8576\nplausibleValueHigh =           40.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8576\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           40.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8576\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8576 (MILLIGRAM), the number and percent of records that have a value higher than           40.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8576","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2536,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.270"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.286316 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8582\nplausibleValueHigh =            5.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8582\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            5.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8582\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8582 (CENTIMETER), the number and percent of records that have a value higher than            5.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8582","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2537,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.271"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.206847 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8583\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8583\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8583\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8583 (FEMTOLITER), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8583","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2538,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.272"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.501534 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8587\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8587\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8587\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8587 (MILLILITER), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8587","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2539,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.273"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.652058 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8588\nplausibleValueHigh =           20.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8588\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           20.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8588\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8588 (MILLIMETER), the number and percent of records that have a value higher than           20.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8588","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2540,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.274"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.841761 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8713\nplausibleValueHigh =           40.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           40.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than           40.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2541,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.275"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.024904 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8739\nplausibleValueHigh =           40.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8739\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           40.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8739\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8739 (POUND (US)), the number and percent of records that have a value higher than           40.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8739","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2542,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.276"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.535318 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8840\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2543,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.277"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.423640 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     8961\nplausibleValueHigh =          250.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          250.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value higher than          250.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2544,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.278"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.672091 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     9234\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     9234\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     9234\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     9234 (VOLUME PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    9234","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2545,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.279"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.919492 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     9529\nplausibleValueHigh =        90000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     9529\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >        90000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     9529\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     9529 (KILOGRAM), the number and percent of records that have a value higher than        90000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    9529","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2546,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.280"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.757285 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     9546\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     9546\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     9546\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     9546 (METER), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    9546","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2547,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.281"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.019758 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId =     9648\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id =     9648\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id =     9648\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID     9648 (UNIFIED ATOMIC MASS UNIT), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"    9648","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2548,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.282"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.771905 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009542\nunitConceptId = 44777604\nplausibleValueHigh =            0.50\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009542\n\t\tand m.unit_concept_id = 44777604\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            0.50\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009542\n\tand unit_concept_id = 44777604\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009542 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD) and UNIT_CONCEPT_ID 44777604 (LITER PER LITER), the number and percent of records that have a value higher than            0.50.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009542","UNIT_CONCEPT_ID":"44777604","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2549,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.283"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.804893 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009596\nunitConceptId =     8837\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009596\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009596\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009596 (CHOLESTEROL IN VLDL [MASS/VOLUME] IN SERUM OR PLASMA BY CALCULATION) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009596","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2550,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.284"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.920302 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009596\nunitConceptId =     8840\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009596\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009596\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009596 (CHOLESTEROL IN VLDL [MASS/VOLUME] IN SERUM OR PLASMA BY CALCULATION) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009596","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2551,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.285"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.055946 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009682\nunitConceptId =     8736\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009682\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009682\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009682 (CORTISOL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009682","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2552,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.286"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.918757 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009682\nunitConceptId =     8837\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009682\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009682\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009682 (CORTISOL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009682","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2553,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.287"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.755298 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009744\nunitConceptId =     8554\nplausibleValueHigh =           40.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009744\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           40.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009744\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009744 (MCHC [MASS/VOLUME] BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than           40.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009744","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2554,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.288"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.765655 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009744\nunitConceptId =     8564\nplausibleValueHigh =           40.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009744\n\t\tand m.unit_concept_id =     8564\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           40.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009744\n\tand unit_concept_id =     8564\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009744 (MCHC [MASS/VOLUME] BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8564 (PICOGRAM), the number and percent of records that have a value higher than           40.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009744","UNIT_CONCEPT_ID":"    8564","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2555,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.289"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.719595 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009744\nunitConceptId =     8636\nplausibleValueHigh =           40.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009744\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           40.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009744\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009744 (MCHC [MASS/VOLUME] BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value higher than           40.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009744","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2556,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.290"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.787874 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009744\nunitConceptId =     8713\nplausibleValueHigh =           40.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009744\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           40.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009744\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009744 (MCHC [MASS/VOLUME] BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than           40.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009744","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2557,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.291"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.072442 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009797\nunitConceptId =     8554\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009797\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009797\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009797 (BASOPHILS/100 LEUKOCYTES IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009797","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2558,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.292"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.774190 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009932\nunitConceptId =     8554\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009932\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009932\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009932 (EOSINOPHILS [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009932","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2559,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.293"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.439519 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009932\nunitConceptId =     8647\nplausibleValueHigh =          600.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009932\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          600.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009932\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009932 (EOSINOPHILS [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value higher than          600.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009932","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2560,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.294"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.710766 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009932\nunitConceptId =     8848\nplausibleValueHigh =           20.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009932\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           20.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009932\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009932 (EOSINOPHILS [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than           20.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009932","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2561,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.295"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.689640 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009932\nunitConceptId =     8961\nplausibleValueHigh =            3.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009932\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            3.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009932\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009932 (EOSINOPHILS [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value higher than            3.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009932","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2562,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.296"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.872979 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009966\nunitConceptId =     8840\nplausibleValueHigh =          400.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009966\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          400.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009966\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009966 (CHOLESTEROL IN LDL [MASS/VOLUME] IN SERUM OR PLASMA BY DIRECT ASSAY) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          400.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009966","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2563,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.297"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.804286 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009966\nunitConceptId =     8736\nplausibleValueHigh =         2500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009966\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009966\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009966 (CHOLESTEROL IN LDL [MASS/VOLUME] IN SERUM OR PLASMA BY DIRECT ASSAY) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value higher than         2500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009966","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2564,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.298"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.810504 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010084\nunitConceptId =     8729\nplausibleValueHigh =         2300.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010084\n\t\tand m.unit_concept_id =     8729\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2300.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010084\n\tand unit_concept_id =     8729\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010084 (C REACTIVE PROTEIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8729 (PICOMOLE PER LITER), the number and percent of records that have a value higher than         2300.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010084","UNIT_CONCEPT_ID":"    8729","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2565,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.299"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.135786 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010084\nunitConceptId =     8842\nplausibleValueHigh =           20.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010084\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           20.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010084\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010084 (C PEPTIDE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than           20.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010084","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2566,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.300"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.888334 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010156\nunitConceptId =     8751\nplausibleValueHigh =           20.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010156\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           20.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010156\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010156 (C REACTIVE PROTEIN [MASS/VOLUME] IN SERUM OR PLASMA BY HIGH SENSITIVITY METHOD) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value higher than           20.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010156","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2567,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.301"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.173477 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010156\nunitConceptId =     8840\nplausibleValueHigh =           35.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010156\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           35.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010156\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010156 (C REACTIVE PROTEIN [MASS/VOLUME] IN SERUM OR PLASMA BY HIGH SENSITIVITY METHOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than           35.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010156","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2568,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.302"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.919056 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010156\nunitConceptId =     8842\nplausibleValueHigh =          127.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010156\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          127.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010156\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010156 (C REACTIVE PROTEIN [MASS/VOLUME] IN SERUM OR PLASMA BY HIGH SENSITIVITY METHOD) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than          127.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010156","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2569,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.303"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.703292 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010340\nunitConceptId =     8817\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010340\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010340\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010340 (TRIIODOTHYRONINE (T3) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010340","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2570,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.304"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.866191 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010340\nunitConceptId =     8840\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010340\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010340\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010340 (TRIIODOTHYRONINE (T3) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010340","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2571,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.305"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.751268 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010340\nunitConceptId =     8842\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010340\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010340\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010340 (TRIIODOTHYRONINE (T3) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010340","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2572,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.306"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.640262 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010457\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010457\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010457\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010457 (EOSINOPHILS/100 LEUKOCYTES IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010457","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2573,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.307"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.786765 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010813\nunitConceptId =     8482\nplausibleValueHigh =           14.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010813\n\t\tand m.unit_concept_id =     8482\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           14.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010813\n\tand unit_concept_id =     8482\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010813 (LEUKOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8482 (PH), the number and percent of records that have a value higher than           14.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010813","UNIT_CONCEPT_ID":"    8482","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2574,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.308"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.783556 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010813\nunitConceptId =     8519\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010813\n\t\tand m.unit_concept_id =     8519\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010813\n\tand unit_concept_id =     8519\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010813 (LEUKOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8519 (LITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010813","UNIT_CONCEPT_ID":"    8519","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2575,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.309"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.703339 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010813\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010813\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010813\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010813 (LEUKOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010813","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2576,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.310"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.936485 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010813\nunitConceptId =     8576\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010813\n\t\tand m.unit_concept_id =     8576\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010813\n\tand unit_concept_id =     8576\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010813 (LEUKOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8576 (MILLIGRAM), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010813","UNIT_CONCEPT_ID":"    8576","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2577,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.311"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.750890 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010813\nunitConceptId =     8587\nplausibleValueHigh =            1.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010813\n\t\tand m.unit_concept_id =     8587\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            1.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010813\n\tand unit_concept_id =     8587\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010813 (LEUKOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8587 (MILLILITER), the number and percent of records that have a value higher than            1.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010813","UNIT_CONCEPT_ID":"    8587","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2578,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.312"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.455959 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010813\nunitConceptId =     8647\nplausibleValueHigh =          150.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010813\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          150.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010813\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010813 (LEUKOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value higher than          150.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010813","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2579,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.313"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.219583 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010813\nunitConceptId =     8686\nplausibleValueHigh =           20.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010813\n\t\tand m.unit_concept_id =     8686\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           20.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010813\n\tand unit_concept_id =     8686\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010813 (LEUKOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8686 (CUBIC MILLIMETER), the number and percent of records that have a value higher than           20.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010813","UNIT_CONCEPT_ID":"    8686","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2580,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.314"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.850762 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010813\nunitConceptId =     8848\nplausibleValueHigh =          150.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010813\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          150.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010813\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010813 (LEUKOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than          150.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010813","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2581,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.315"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.872265 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010813\nunitConceptId =     9665\nplausibleValueHigh =           12.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010813\n\t\tand m.unit_concept_id =     9665\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           12.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010813\n\tand unit_concept_id =     9665\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010813 (LEUKOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9665 (MICROLITER), the number and percent of records that have a value higher than           12.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010813","UNIT_CONCEPT_ID":"    9665","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2582,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.316"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.705155 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3010813\nunitConceptId = 45744812\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3010813\n\t\tand m.unit_concept_id = 45744812\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3010813\n\tand unit_concept_id = 45744812\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3010813 (LEUKOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID 45744812 (CELLS), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3010813","UNIT_CONCEPT_ID":"45744812","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2583,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.317"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.802103 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011099\nunitConceptId =     8736\nplausibleValueHigh =          200.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011099\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          200.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011099\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011099 (SEX HORMONE BINDING GLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value higher than          200.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011099","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2584,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.318"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.810268 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011163\nunitConceptId =     8554\nplausibleValueHigh =           75.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011163\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           75.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011163\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011163 (CHOLESTEROL.TOTAL/CHOLESTEROL IN HDL [MASS RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than           75.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011163","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2585,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.319"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.834227 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011163\nunitConceptId =     8523\nplausibleValueHigh =          158.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011163\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          158.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011163\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011163 (CHOLESTEROL.TOTAL/CHOLESTEROL IN HDL [MASS RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value higher than          158.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011163","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2586,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.320"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.073198 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011335\nunitConceptId =     8736\nplausibleValueHigh =            2.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011335\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            2.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011335\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011335 (DIGOXIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value higher than            2.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011335","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2587,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.321"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.542905 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011335\nunitConceptId =     8748\nplausibleValueHigh =            2.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011335\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            2.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011335\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011335 (DIGOXIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value higher than            2.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011335","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2588,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.322"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.518570 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011335\nunitConceptId =     8817\nplausibleValueHigh =            3.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011335\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            3.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011335\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011335 (DIGOXIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value higher than            3.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011335","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2589,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.323"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.940871 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011335\nunitConceptId =     8842\nplausibleValueHigh =            2.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011335\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            2.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011335\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011335 (DIGOXIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than            2.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011335","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2590,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.324"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.736614 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011337\nunitConceptId =     8817\nplausibleValueHigh =           40.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011337\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           40.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011337\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011337 (ALDOSTERONE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value higher than           40.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011337","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2591,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.325"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.441300 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011424\nunitConceptId =     8840\nplausibleValueHigh =          300.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011424\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          300.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011424\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011424 (GLUCOSE [MASS/VOLUME] IN BLOOD BY AUTOMATED TEST STRIP) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          300.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011424","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2592,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.326"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.772301 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011505\nunitConceptId =     8519\nplausibleValueHigh =            4.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011505\n\t\tand m.unit_concept_id =     8519\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            4.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011505\n\tand unit_concept_id =     8519\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011505 (FEV1/FVC) and UNIT_CONCEPT_ID     8519 (LITER), the number and percent of records that have a value higher than            4.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011505","UNIT_CONCEPT_ID":"    8519","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2593,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.327"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.849645 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011505\nunitConceptId =     8523\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011505\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011505\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011505 (FEV1/FVC) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011505","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2594,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.328"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.581424 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011505\nunitConceptId =     8554\nplausibleValueHigh =          120.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011505\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          120.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011505\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011505 (FEV1/FVC) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          120.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011505","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2595,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.329"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.719178 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011505\nunitConceptId =     9330\nplausibleValueHigh =           90.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011505\n\t\tand m.unit_concept_id =     9330\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           90.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011505\n\tand unit_concept_id =     9330\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011505 (FEV1/FVC) and UNIT_CONCEPT_ID     9330 (INCH (US)), the number and percent of records that have a value higher than           90.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011505","UNIT_CONCEPT_ID":"    9330","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2596,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.330"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.571359 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011948\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011948\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011948\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011948 (MONOCYTES/100 LEUKOCYTES IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011948","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2597,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.331"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.135649 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011951\nunitConceptId =     8848\nplausibleValueHigh =           16.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011951\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           16.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011951\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011951 (ASPERGILLUS FUMIGATUS IGE AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than           16.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011951","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2598,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.332"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.772454 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3011960\nunitConceptId =     8845\nplausibleValueHigh =         5000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3011960\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         5000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3011960\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3011960 (NATRIURETIC PEPTIDE B [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value higher than         5000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3011960","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2599,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.333"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.471705 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012030\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012030\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012030\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012030 (MCH [ENTITIC MASS] BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012030","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2600,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.334"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.257640 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012030\nunitConceptId =     8564\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012030\n\t\tand m.unit_concept_id =     8564\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012030\n\tand unit_concept_id =     8564\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012030 (MCH [ENTITIC MASS] BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8564 (PICOGRAM), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012030","UNIT_CONCEPT_ID":"    8564","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2601,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.335"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819283 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012095\nunitConceptId =     8753\nplausibleValueHigh =            3.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012095\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            3.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012095\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012095 (MAGNESIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than            3.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012095","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2602,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.336"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.503114 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012095\nunitConceptId =     8840\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012095\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012095\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012095 (MAGNESIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012095","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2603,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.337"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.057016 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012095\nunitConceptId =     9557\nplausibleValueHigh =            3.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012095\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            3.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012095\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012095 (MAGNESIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value higher than            3.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012095","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2604,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.338"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.703804 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012336\nunitConceptId =     8840\nplausibleValueHigh =          500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012336\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012336\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012336 (HAPTOGLOBIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012336","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2605,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.339"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.725844 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012494\nunitConceptId =     8554\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012494\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012494\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012494 (PEANUT IGE AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012494","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2606,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.340"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.003788 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012516\nunitConceptId =     8713\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012516\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012516\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012516 (ALBUMIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012516","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2607,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.341"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.872336 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012516\nunitConceptId =     8751\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012516\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012516\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012516 (ALBUMIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012516","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2608,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.342"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":40,"EXECUTION_TIME":"2.119434 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012516\nunitConceptId =     8840\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012516\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012516\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012516 (ALBUMIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012516","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2609,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.343"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.726201 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012516\nunitConceptId =     8859\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012516\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012516\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012516 (ALBUMIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012516","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2610,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.344"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.648664 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3012544\nunitConceptId =     8482\nplausibleValueHigh =            9.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3012544\n\t\tand m.unit_concept_id =     8482\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            9.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3012544\n\tand unit_concept_id =     8482\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3012544 (PH OF VENOUS BLOOD) and UNIT_CONCEPT_ID     8482 (PH), the number and percent of records that have a value higher than            9.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3012544","UNIT_CONCEPT_ID":"    8482","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2611,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.345"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.686872 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009395\nunitConceptId =     8876\nplausibleValueHigh =          250.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009395\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          250.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009395\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009395 (SYSTOLIC BLOOD PRESSURE--SUPINE) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value higher than          250.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009395","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2612,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.346"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.750279 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013115\nunitConceptId =     8554\nplausibleValueHigh =            5.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013115\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            5.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013115\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013115 (EOSINOPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than            5.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013115","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2613,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.347"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.673022 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013115\nunitConceptId =     8785\nplausibleValueHigh =          300.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013115\n\t\tand m.unit_concept_id =     8785\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          300.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013115\n\tand unit_concept_id =     8785\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013115 (EOSINOPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8785 (PER CUBIC MILLIMETER), the number and percent of records that have a value higher than          300.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013115","UNIT_CONCEPT_ID":"    8785","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2614,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.348"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.134685 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013115\nunitConceptId =     8848\nplausibleValueHigh =            1.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013115\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            1.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013115\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013115 (EOSINOPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than            1.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013115","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2615,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.349"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.788001 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013115\nunitConceptId =     8961\nplausibleValueHigh =            1.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013115\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            1.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013115\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013115 (EOSINOPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value higher than            1.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013115","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2616,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.350"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.719174 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013115\nunitConceptId =     9435\nplausibleValueHigh =            1.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013115\n\t\tand m.unit_concept_id =     9435\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            1.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013115\n\tand unit_concept_id =     9435\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013115 (EOSINOPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9435 (THOUSAND PER LITER), the number and percent of records that have a value higher than            1.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013115","UNIT_CONCEPT_ID":"    9435","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2617,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.351"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.573489 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013201\nunitConceptId =     8636\nplausibleValueHigh =           60.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013201\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           60.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013201\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013201 (BETA-2-MICROGLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value higher than           60.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013201","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2618,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.352"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.655090 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013201\nunitConceptId =     8713\nplausibleValueHigh =            6.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013201\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            6.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013201\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013201 (BETA-2-MICROGLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than            6.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013201","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2619,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.353"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.856223 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013201\nunitConceptId =     8748\nplausibleValueHigh =         6000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013201\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         6000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013201\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013201 (BETA-2-MICROGLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value higher than         6000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013201","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2620,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.354"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.471407 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013201\nunitConceptId =     8751\nplausibleValueHigh =            6.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013201\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            6.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013201\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013201 (BETA-2-MICROGLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value higher than            6.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013201","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2621,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.355"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.418734 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013201\nunitConceptId =     8840\nplausibleValueHigh =           60.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013201\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           60.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013201\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013201 (BETA-2-MICROGLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than           60.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013201","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2622,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.356"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.776373 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013201\nunitConceptId =     8842\nplausibleValueHigh =         6000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013201\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         6000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013201\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013201 (BETA-2-MICROGLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than         6000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013201","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2623,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.357"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.742100 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013201\nunitConceptId =     8859\nplausibleValueHigh =            6.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013201\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            6.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013201\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013201 (BETA-2-MICROGLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value higher than            6.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013201","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2624,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.358"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.849258 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013429\nunitConceptId =     8554\nplausibleValueHigh =            4.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013429\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            4.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013429\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013429 (BASOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than            4.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013429","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2625,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.359"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.810175 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013429\nunitConceptId =     8647\nplausibleValueHigh =          400.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013429\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          400.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013429\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013429 (BASOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value higher than          400.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013429","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2626,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.360"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.734203 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013429\nunitConceptId =     8816\nplausibleValueHigh =            1.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013429\n\t\tand m.unit_concept_id =     8816\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            1.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013429\n\tand unit_concept_id =     8816\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013429 (BASOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8816 (MILLION PER MILLILITER), the number and percent of records that have a value higher than            1.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013429","UNIT_CONCEPT_ID":"    8816","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2627,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.361"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.788479 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013429\nunitConceptId =     8848\nplausibleValueHigh =          400.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013429\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          400.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013429\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013429 (BASOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than          400.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013429","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2628,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.362"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.957005 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013429\nunitConceptId =     8961\nplausibleValueHigh =          400.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013429\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          400.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013429\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013429 (BASOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value higher than          400.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013429","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2629,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.363"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.872430 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013429\nunitConceptId =     9254\nplausibleValueHigh = 400000000000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013429\n\t\tand m.unit_concept_id =     9254\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number > 400000000000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013429\n\tand unit_concept_id =     9254\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013429 (BASOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9254 (PER LITER), the number and percent of records that have a value higher than 400000000000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013429","UNIT_CONCEPT_ID":"    9254","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2630,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.364"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.818695 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013429\nunitConceptId =     9435\nplausibleValueHigh =    400000000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013429\n\t\tand m.unit_concept_id =     9435\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >    400000000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013429\n\tand unit_concept_id =     9435\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013429 (BASOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9435 (THOUSAND PER LITER), the number and percent of records that have a value higher than    400000000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013429","UNIT_CONCEPT_ID":"    9435","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2631,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.365"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.667246 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013429\nunitConceptId =     9436\nplausibleValueHigh =       400000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013429\n\t\tand m.unit_concept_id =     9436\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >       400000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013429\n\tand unit_concept_id =     9436\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013429 (BASOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9436 (THOUSAND PER MILLILITER), the number and percent of records that have a value higher than       400000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013429","UNIT_CONCEPT_ID":"    9436","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2632,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.366"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.672336 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013429\nunitConceptId =     9444\nplausibleValueHigh =          400.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013429\n\t\tand m.unit_concept_id =     9444\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          400.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013429\n\tand unit_concept_id =     9444\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013429 (BASOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9444 (BILLION PER LITER), the number and percent of records that have a value higher than          400.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013429","UNIT_CONCEPT_ID":"    9444","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2633,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.367"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.555480 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013466\nunitConceptId =     8555\nplausibleValueHigh =           60.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013466\n\t\tand m.unit_concept_id =     8555\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           60.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013466\n\tand unit_concept_id =     8555\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013466 (APTT IN BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8555 (SECOND), the number and percent of records that have a value higher than           60.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013466","UNIT_CONCEPT_ID":"    8555","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2634,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.368"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.518591 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013603\nunitConceptId =     8748\nplausibleValueHigh =            6.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013603\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            6.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013603\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013603 (PROSTATE SPECIFIC AG [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value higher than            6.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013603","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2635,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.369"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.290470 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013603\nunitConceptId =     8817\nplausibleValueHigh =           60.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013603\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           60.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013603\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013603 (PROSTATE SPECIFIC AG [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value higher than           60.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013603","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2636,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.370"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.722047 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013603\nunitConceptId =     8842\nplausibleValueHigh =            6.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013603\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            6.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013603\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013603 (PROSTATE SPECIFIC AG [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than            6.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013603","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2637,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.371"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.934482 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013604\nunitConceptId =     8840\nplausibleValueHigh =          300.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013604\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          300.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013604\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013604 (GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA --30 MINUTES POST 75 G GLUCOSE PO) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          300.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013604","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2638,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.372"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.809941 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013650\nunitConceptId =     8647\nplausibleValueHigh =        50000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013650\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >        50000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013650\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013650 (NEUTROPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value higher than        50000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013650","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2639,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.373"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.572011 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013650\nunitConceptId =     8848\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013650\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013650\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013650 (NEUTROPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013650","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2640,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.374"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.406481 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013650\nunitConceptId =     8961\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013650\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013650\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013650 (NEUTROPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013650","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2641,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.375"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.872762 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013650\nunitConceptId =     9444\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013650\n\t\tand m.unit_concept_id =     9444\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013650\n\tand unit_concept_id =     9444\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013650 (NEUTROPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9444 (BILLION PER LITER), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013650","UNIT_CONCEPT_ID":"    9444","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2642,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.376"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.841125 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013682\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013682\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013682\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013682 (UREA NITROGEN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013682","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2643,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.377"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.872203 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013682\nunitConceptId =     8753\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013682\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013682\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013682 (UREA NITROGEN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013682","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2644,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.378"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.935722 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013682\nunitConceptId =     8840\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013682\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013682\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013682 (UREA NITROGEN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013682","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2645,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.379"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.790363 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013707\nunitConceptId =     8588\nplausibleValueHigh =           59.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013707\n\t\tand m.unit_concept_id =     8588\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           59.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013707\n\tand unit_concept_id =     8588\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013707 (ERYTHROCYTE SEDIMENTATION RATE BY WESTERGREN METHOD) and UNIT_CONCEPT_ID     8588 (MILLIMETER), the number and percent of records that have a value higher than           59.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013707","UNIT_CONCEPT_ID":"    8588","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2646,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.380"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.800719 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013707\nunitConceptId =     8752\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013707\n\t\tand m.unit_concept_id =     8752\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013707\n\tand unit_concept_id =     8752\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013707 (ERYTHROCYTE SEDIMENTATION RATE BY WESTERGREN METHOD) and UNIT_CONCEPT_ID     8752 (MILLIMETER PER HOUR), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013707","UNIT_CONCEPT_ID":"    8752","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2647,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.381"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.950883 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013721\nunitConceptId =     8554\nplausibleValueHigh =         2000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013721\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013721\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013721 (ASPARTATE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than         2000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013721","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2648,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.382"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.772591 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013721\nunitConceptId =     8645\nplausibleValueHigh =         2000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013721\n\t\tand m.unit_concept_id =     8645\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013721\n\tand unit_concept_id =     8645\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013721 (ASPARTATE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8645 (UNIT PER LITER), the number and percent of records that have a value higher than         2000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013721","UNIT_CONCEPT_ID":"    8645","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2649,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.383"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.956780 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013721\nunitConceptId =     8713\nplausibleValueHigh =         2000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013721\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013721\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013721 (ASPARTATE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than         2000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013721","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2650,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.384"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.518890 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013721\nunitConceptId =     8840\nplausibleValueHigh =         2000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013721\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013721\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013721 (ASPARTATE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than         2000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013721","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2651,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.385"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.466493 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013721\nunitConceptId =     8923\nplausibleValueHigh =         2000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013721\n\t\tand m.unit_concept_id =     8923\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013721\n\tand unit_concept_id =     8923\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013721 (ASPARTATE AMINOTRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8923 (INTERNATIONAL UNIT PER LITER), the number and percent of records that have a value higher than         2000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013721","UNIT_CONCEPT_ID":"    8923","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2652,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.386"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.688193 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013762\nunitConceptId =     8576\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013762\n\t\tand m.unit_concept_id =     8576\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013762\n\tand unit_concept_id =     8576\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013762 (BODY WEIGHT MEASURED) and UNIT_CONCEPT_ID     8576 (MILLIGRAM), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013762","UNIT_CONCEPT_ID":"    8576","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2653,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.387"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.930830 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013762\nunitConceptId =     8739\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013762\n\t\tand m.unit_concept_id =     8739\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013762\n\tand unit_concept_id =     8739\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013762 (BODY WEIGHT MEASURED) and UNIT_CONCEPT_ID     8739 (POUND (US)), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013762","UNIT_CONCEPT_ID":"    8739","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2654,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.388"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.857534 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013826\nunitConceptId =     8840\nplausibleValueHigh =          500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013826\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013826\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013826 (GLUCOSE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013826","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2655,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.389"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.119556 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3013869\nunitConceptId =     8554\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3013869\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3013869\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3013869 (BASOPHILS/100 LEUKOCYTES IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3013869","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2656,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.390"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.834072 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014173\nunitConceptId =     8729\nplausibleValueHigh =          373.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014173\n\t\tand m.unit_concept_id =     8729\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          373.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014173\n\tand unit_concept_id =     8729\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014173 (CALCITRIOL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8729 (PICOMOLE PER LITER), the number and percent of records that have a value higher than          373.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014173","UNIT_CONCEPT_ID":"    8729","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2657,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.391"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.802563 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014173\nunitConceptId =     8842\nplausibleValueHigh =           81.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014173\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           81.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014173\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014173 (CALCITRIOL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than           81.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014173","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2658,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.392"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.786258 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014173\nunitConceptId =     8845\nplausibleValueHigh =           90.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014173\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           90.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014173\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014173 (CALCITRIOL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value higher than           90.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014173","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2659,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.393"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.688065 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014576\nunitConceptId =     8713\nplausibleValueHigh =           37.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014576\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           37.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014576\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014576 (CHLORIDE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than           37.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014576","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2660,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.394"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.734188 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014576\nunitConceptId =     8753\nplausibleValueHigh =          108.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014576\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          108.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014576\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014576 (CHLORIDE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than          108.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014576","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2661,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.395"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.018743 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014576\nunitConceptId =     8840\nplausibleValueHigh =          180.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014576\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          180.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014576\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014576 (CHLORIDE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          180.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014576","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2662,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.396"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.357872 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014576\nunitConceptId =     8842\nplausibleValueHigh =          103.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014576\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          103.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014576\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014576 (CHLORIDE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than          103.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014576","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2663,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.397"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.161887 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014576\nunitConceptId =     9553\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014576\n\t\tand m.unit_concept_id =     9553\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014576\n\tand unit_concept_id =     9553\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014576 (CHLORIDE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9553 (MILLIEQUIVALENT PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014576","UNIT_CONCEPT_ID":"    9553","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2664,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.398"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.063037 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014576\nunitConceptId =     9557\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014576\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014576\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014576 (CHLORIDE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014576","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2665,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.399"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.802830 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014716\nunitConceptId =     8840\nplausibleValueHigh =          250.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014716\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          250.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014716\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014716 (GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA --1 HOUR POST 100 G GLUCOSE PO) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          250.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014716","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2666,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.400"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.533557 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3014791\nunitConceptId =     8840\nplausibleValueHigh =          130.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3014791\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          130.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3014791\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3014791 (APOLIPOPROTEIN B [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          130.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3014791","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2667,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.401"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.564406 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015076\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015076\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015076\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015076 (SOYBEAN IGE AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015076","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2668,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.402"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.791574 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015183\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015183\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015183\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015183 (ERYTHROCYTE SEDIMENTATION RATE) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015183","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2669,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.403"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.668180 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015183\nunitConceptId =     8752\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015183\n\t\tand m.unit_concept_id =     8752\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015183\n\tand unit_concept_id =     8752\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015183 (ERYTHROCYTE SEDIMENTATION RATE) and UNIT_CONCEPT_ID     8752 (MILLIMETER PER HOUR), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015183","UNIT_CONCEPT_ID":"    8752","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2670,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.404"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.750616 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015280\nunitConceptId =     8848\nplausibleValueHigh =          326.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015280\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          326.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015280\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015280 (BLASTS [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than          326.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015280","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2671,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.405"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.719882 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015375\nunitConceptId =     8751\nplausibleValueHigh =            6.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015375\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            6.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015375\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015375 (AMIODARONE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value higher than            6.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015375","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2672,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.406"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.482223 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015375\nunitConceptId =     8859\nplausibleValueHigh =          556.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015375\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          556.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015375\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015375 (AMIODARONE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value higher than          556.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015375","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2673,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.407"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.834461 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015377\nunitConceptId =     8713\nplausibleValueHigh =           37.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015377\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           37.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015377\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015377 (CALCIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than           37.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015377","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2674,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.408"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.903532 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015377\nunitConceptId =     8753\nplausibleValueHigh =           13.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015377\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           13.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015377\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015377 (CALCIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than           13.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015377","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2675,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.409"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.808961 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015377\nunitConceptId =     8840\nplausibleValueHigh =        10000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015377\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >        10000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015377\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015377 (CALCIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than        10000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015377","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2676,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.410"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.566297 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015473\nunitConceptId =     8753\nplausibleValueHigh =           47.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015473\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           47.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015473\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015473 (BICARBONATE [MOLES/VOLUME] IN PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than           47.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015473","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2677,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.411"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.866552 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015473\nunitConceptId =     9557\nplausibleValueHigh =           47.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015473\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           47.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015473\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015473 (BICARBONATE [MOLES/VOLUME] IN PLASMA) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value higher than           47.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015473","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2678,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.412"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.941322 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015586\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015586\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015586\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015586 (SEGMENTED NEUTROPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015586","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2679,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.413"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.671088 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015586\nunitConceptId =     8848\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015586\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015586\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015586 (SEGMENTED NEUTROPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015586","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2680,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.414"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.072478 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015586\nunitConceptId =     8961\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015586\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015586\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015586 (SEGMENTED NEUTROPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015586","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2681,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.415"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.788256 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015632\nunitConceptId =     8647\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015632\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015632\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015632 (CARBON DIOXIDE, TOTAL [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015632","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2682,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.416"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.765801 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015632\nunitConceptId =     8753\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015632\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015632\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015632 (CARBON DIOXIDE, TOTAL [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015632","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2683,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.417"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.738079 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015632\nunitConceptId =     8840\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015632\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015632\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015632 (CARBON DIOXIDE, TOTAL [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015632","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2684,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.418"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.831046 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015632\nunitConceptId =     9557\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015632\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015632\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015632 (CARBON DIOXIDE, TOTAL [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015632","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2685,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.419"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.587405 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015731\nunitConceptId =     8848\nplausibleValueHigh =           12.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015731\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           12.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015731\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015731 (BERMUDA GRASS IGE AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than           12.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015731","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2686,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.420"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.650540 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015736\nunitConceptId =     8482\nplausibleValueHigh =           11.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015736\n\t\tand m.unit_concept_id =     8482\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           11.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015736\n\tand unit_concept_id =     8482\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015736 (PH OF URINE) and UNIT_CONCEPT_ID     8482 (PH), the number and percent of records that have a value higher than           11.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015736","UNIT_CONCEPT_ID":"    8482","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2687,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.421"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.771900 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015774\nunitConceptId =     8840\nplausibleValueHigh =            6.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015774\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            6.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015774\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015774 (CALCIUM.IONIZED [MOLES/VOLUME] IN SERUM OR PLASMA BY CALCULATION) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than            6.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015774","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2688,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.422"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.825336 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015813\nunitConceptId =     9101\nplausibleValueHigh =           98.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015813\n\t\tand m.unit_concept_id =     9101\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           98.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015813\n\tand unit_concept_id =     9101\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015813 (CARDIOLIPIN IGM AB [UNITS/VOLUME] IN SERUM BY IMMUNOASSAY) and UNIT_CONCEPT_ID     9101 (IGM PHOSPHOLIPID UNIT), the number and percent of records that have a value higher than           98.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015813","UNIT_CONCEPT_ID":"    9101","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2689,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.423"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.076393 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015956\nunitConceptId =     8554\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015956\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015956\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015956 (EOSINOPHILS/100 LEUKOCYTES IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015956","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2690,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.424"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803287 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015956\nunitConceptId =     8848\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015956\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015956\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015956 (EOSINOPHILS/100 LEUKOCYTES IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015956","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2691,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.425"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.934332 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016049\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016049\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016049\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016049 (TESTOSTERONE FREE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016049","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2692,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.426"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.135226 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016049\nunitConceptId =     8817\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016049\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016049\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016049 (TESTOSTERONE FREE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016049","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2693,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.427"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819364 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016049\nunitConceptId =     8845\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016049\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016049\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016049 (TESTOSTERONE FREE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016049","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2694,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.428"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.135665 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016201\nunitConceptId =     8751\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016201\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016201\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016201 (VALPROATE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016201","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2695,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.429"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.834700 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016201\nunitConceptId =     8859\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016201\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016201\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016201 (VALPROATE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016201","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2696,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.430"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.482905 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016244\nunitConceptId =     8860\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016244\n\t\tand m.unit_concept_id =     8860\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016244\n\tand unit_concept_id =     8860\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016244 (INSULIN [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8860 (MICROUNIT PER MILLILITER), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016244","UNIT_CONCEPT_ID":"    8860","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2697,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.431"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.549834 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016244\nunitConceptId =     8985\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016244\n\t\tand m.unit_concept_id =     8985\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016244\n\tand unit_concept_id =     8985\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016244 (INSULIN [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8985 (INTERNATIONAL UNIT PER MILLILITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016244","UNIT_CONCEPT_ID":"    8985","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2698,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.432"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.779635 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016244\nunitConceptId = 44777578\nplausibleValueHigh =           46.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016244\n\t\tand m.unit_concept_id = 44777578\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           46.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016244\n\tand unit_concept_id = 44777578\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016244 (INSULIN [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID 44777578 (MILLIUNIT PER LITER), the number and percent of records that have a value higher than           46.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016244","UNIT_CONCEPT_ID":"44777578","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2699,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.433"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.662013 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016258\nunitConceptId =     8582\nplausibleValueHigh =          222.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016258\n\t\tand m.unit_concept_id =     8582\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          222.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016258\n\tand unit_concept_id =     8582\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016258 (WAIST CIRCUMFERENCE AT UMBILICUS BY TAPE MEASURE) and UNIT_CONCEPT_ID     8582 (CENTIMETER), the number and percent of records that have a value higher than          222.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016258","UNIT_CONCEPT_ID":"    8582","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2700,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.434"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.574690 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016258\nunitConceptId =     9330\nplausibleValueHigh =           74.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016258\n\t\tand m.unit_concept_id =     9330\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           74.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016258\n\tand unit_concept_id =     9330\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016258 (WAIST CIRCUMFERENCE AT UMBILICUS BY TAPE MEASURE) and UNIT_CONCEPT_ID     9330 (INCH (US)), the number and percent of records that have a value higher than           74.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016258","UNIT_CONCEPT_ID":"    9330","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2701,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.435"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.535409 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016290\nunitConceptId =     9212\nplausibleValueHigh =           60.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016290\n\t\tand m.unit_concept_id =     9212\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           60.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016290\n\tand unit_concept_id =     9212\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016290 (APTT IN CONTROL BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     9212 (SECOND), the number and percent of records that have a value higher than           60.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016290","UNIT_CONCEPT_ID":"    9212","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2702,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.436"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.557130 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016293\nunitConceptId =     8753\nplausibleValueHigh =           47.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016293\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           47.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016293\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016293 (BICARBONATE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than           47.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016293","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2703,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.437"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.521440 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016293\nunitConceptId =     9557\nplausibleValueHigh =           47.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016293\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           47.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016293\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016293 (BICARBONATE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value higher than           47.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016293","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2704,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.438"},{"NUM_VIOLATED_ROWS":10,"PCT_VIOLATED_ROWS":0.1613,"NUM_DENOMINATOR_ROWS":62,"EXECUTION_TIME":"1.641440 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016311\nunitConceptId =     8554\nplausibleValueHigh =           29.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016311\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           29.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016311\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016311 (CREATINE KINASE.MB/CREATINE KINASE.TOTAL IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than           29.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016311","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2705,"FAILED":1,"THRESHOLD_VALUE":5,"_row":"19.439"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.788549 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016723\nunitConceptId =     8713\nplausibleValueHigh =           36.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016723\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           36.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016723\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016723 (CREATININE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than           36.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016723","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2706,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.440"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.689018 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016723\nunitConceptId =     8749\nplausibleValueHigh =          200.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016723\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          200.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016723\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016723 (CREATININE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value higher than          200.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016723","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2707,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.441"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.873164 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016723\nunitConceptId =     8753\nplausibleValueHigh =          142.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016723\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          142.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016723\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016723 (CREATININE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than          142.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016723","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2708,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.442"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.864732 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212294\nunitConceptId =     8840\nplausibleValueHigh =            5.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212294\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            5.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212294\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212294 (CREATININE; BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than            5.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212294","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2709,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.443"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.950714 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016723\nunitConceptId =     9117\nplausibleValueHigh =          294.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016723\n\t\tand m.unit_concept_id =     9117\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          294.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016723\n\tand unit_concept_id =     9117\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016723 (CREATININE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9117 (MILLILITER PER MINUTE PER 1.73 SQUARE METER), the number and percent of records that have a value higher than          294.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016723","UNIT_CONCEPT_ID":"    9117","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2710,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.444"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.856587 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016771\nunitConceptId =     8645\nplausibleValueHigh =          107.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016771\n\t\tand m.unit_concept_id =     8645\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          107.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016771\n\tand unit_concept_id =     8645\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016771 (AMYLASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8645 (UNIT PER LITER), the number and percent of records that have a value higher than          107.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016771","UNIT_CONCEPT_ID":"    8645","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2711,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.445"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.749235 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016913\nunitConceptId =     8554\nplausibleValueHigh =          389.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016913\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          389.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016913\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016913 (CREATINE KINASE.MM [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          389.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016913","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2712,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.446"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.750105 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016991\nunitConceptId =     8713\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016991\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016991\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016991 (THYROXINE (T4) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016991","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2713,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.447"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.126935 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016991\nunitConceptId =     8817\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016991\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016991\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016991 (THYROXINE (T4) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016991","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2714,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.448"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.120493 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016991\nunitConceptId =     8837\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016991\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016991\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016991 (THYROXINE (T4) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016991","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2715,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.449"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.588122 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3016991\nunitConceptId =     8840\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3016991\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3016991\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3016991 (THYROXINE (T4) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3016991","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2716,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.450"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.857093 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017044\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017044\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017044\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017044 (THYROTROPIN RECEPTOR AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017044","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2717,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.451"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.672686 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017044\nunitConceptId =     8645\nplausibleValueHigh =          345.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017044\n\t\tand m.unit_concept_id =     8645\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          345.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017044\n\tand unit_concept_id =     8645\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017044 (THYROTROPIN RECEPTOR AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8645 (UNIT PER LITER), the number and percent of records that have a value higher than          345.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017044","UNIT_CONCEPT_ID":"    8645","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2718,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.452"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.804225 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017044\nunitConceptId =     8923\nplausibleValueHigh =          345.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017044\n\t\tand m.unit_concept_id =     8923\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          345.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017044\n\tand unit_concept_id =     8923\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017044 (THYROTROPIN RECEPTOR AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8923 (INTERNATIONAL UNIT PER LITER), the number and percent of records that have a value higher than          345.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017044","UNIT_CONCEPT_ID":"    8923","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2719,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.453"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.565528 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017250\nunitConceptId =     8636\nplausibleValueHigh =           40.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017250\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           40.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017250\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017250 (CREATININE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value higher than           40.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017250","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2720,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.454"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.436655 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017250\nunitConceptId =     8723\nplausibleValueHigh =            8.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017250\n\t\tand m.unit_concept_id =     8723\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            8.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017250\n\tand unit_concept_id =     8723\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017250 (CREATININE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8723 (MILLIGRAM PER GRAM), the number and percent of records that have a value higher than            8.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017250","UNIT_CONCEPT_ID":"    8723","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2721,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.455"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.772316 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017250\nunitConceptId =     8751\nplausibleValueHigh =         3000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017250\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         3000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017250\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017250 (CREATININE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value higher than         3000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017250","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2722,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.456"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.556472 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017250\nunitConceptId =     8753\nplausibleValueHigh =           22.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017250\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           22.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017250\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017250 (CREATININE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than           22.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017250","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2723,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.457"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.050895 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  2212295\nunitConceptId =     8840\nplausibleValueHigh =            5.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  2212295\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            5.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  2212295\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  2212295 (CREATININE; OTHER SOURCE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than            5.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 2212295","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2724,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.458"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.809928 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017250\nunitConceptId =     8842\nplausibleValueHigh =          706.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017250\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          706.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017250\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017250 (CREATININE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than          706.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017250","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2725,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.459"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.029582 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017250\nunitConceptId =     8861\nplausibleValueHigh =           51.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017250\n\t\tand m.unit_concept_id =     8861\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           51.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017250\n\tand unit_concept_id =     8861\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017250 (CREATININE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8861 (MILLIGRAM PER MILLILITER), the number and percent of records that have a value higher than           51.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017250","UNIT_CONCEPT_ID":"    8861","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2726,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.460"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.942414 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017250\nunitConceptId =     9117\nplausibleValueHigh =          268.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017250\n\t\tand m.unit_concept_id =     9117\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          268.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017250\n\tand unit_concept_id =     9117\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017250 (CREATININE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     9117 (MILLILITER PER MINUTE PER 1.73 SQUARE METER), the number and percent of records that have a value higher than          268.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017250","UNIT_CONCEPT_ID":"    9117","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2727,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.461"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.703519 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017501\nunitConceptId =     8647\nplausibleValueHigh =        50000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017501\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >        50000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017501\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017501 (NEUTROPHILS [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value higher than        50000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017501","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2728,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.462"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.359488 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017501\nunitConceptId =     8848\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017501\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017501\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017501 (NEUTROPHILS [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017501","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2729,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.463"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803856 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017732\nunitConceptId =     8686\nplausibleValueHigh =        50000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017732\n\t\tand m.unit_concept_id =     8686\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >        50000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017732\n\tand unit_concept_id =     8686\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017732 (NEUTROPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8686 (CUBIC MILLIMETER), the number and percent of records that have a value higher than        50000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017732","UNIT_CONCEPT_ID":"    8686","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2730,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.464"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.788990 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017732\nunitConceptId =     8785\nplausibleValueHigh =        50000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017732\n\t\tand m.unit_concept_id =     8785\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >        50000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017732\n\tand unit_concept_id =     8785\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017732 (NEUTROPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8785 (PER CUBIC MILLIMETER), the number and percent of records that have a value higher than        50000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017732","UNIT_CONCEPT_ID":"    8785","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2731,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.465"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.635254 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017732\nunitConceptId =     8848\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017732\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017732\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017732 (NEUTROPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017732","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2732,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.466"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.835145 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017732\nunitConceptId =     8961\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017732\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017732\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017732 (NEUTROPHILS [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017732","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2733,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.467"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.534790 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017766\nunitConceptId =     8636\nplausibleValueHigh =            2.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017766\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            2.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017766\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017766 (COMPLEMENT C4 [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value higher than            2.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017766","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2734,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.468"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.866340 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017766\nunitConceptId =     8751\nplausibleValueHigh =          601.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017766\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          601.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017766\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017766 (COMPLEMENT C4 [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value higher than          601.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017766","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2735,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.469"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.557458 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3017766\nunitConceptId =     8840\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3017766\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3017766\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3017766 (COMPLEMENT C4 [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3017766","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2736,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.470"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.825494 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018010\nunitConceptId =     8554\nplausibleValueHigh =           75.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018010\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           75.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018010\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018010 (NEUTROPHILS/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than           75.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018010","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2737,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.471"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.887494 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018081\nunitConceptId =     8748\nplausibleValueHigh =       548345.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018081\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >       548345.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018081\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018081 (BETA-2-MICROGLOBULIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value higher than       548345.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018081","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2738,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.472"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.722647 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018081\nunitConceptId =     8751\nplausibleValueHigh =          548.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018081\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          548.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018081\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018081 (BETA-2-MICROGLOBULIN [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value higher than          548.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018081","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2739,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.473"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.589491 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018229\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018229\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018229\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018229 (MYELOCYTES/100 LEUKOCYTES IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018229","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2740,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.474"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.751209 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018311\nunitConceptId =     8523\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018311\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018311\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018311 (UREA NITROGEN/CREATININE [MASS RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018311","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2741,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.475"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.588415 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018311\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018311\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018311\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018311 (UREA NITROGEN/CREATININE [MASS RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018311","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2742,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.476"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.618315 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018311\nunitConceptId =     9074\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018311\n\t\tand m.unit_concept_id =     9074\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018311\n\tand unit_concept_id =     9074\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018311 (UREA NITROGEN/CREATININE [MASS RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9074 (MILLIGRAM PER MILLIGRAM OF CREATININE), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018311","UNIT_CONCEPT_ID":"    9074","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2743,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.477"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.935440 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018677\nunitConceptId =     8555\nplausibleValueHigh =           60.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018677\n\t\tand m.unit_concept_id =     8555\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           60.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018677\n\tand unit_concept_id =     8555\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018677 (APTT IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8555 (SECOND), the number and percent of records that have a value higher than           60.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018677","UNIT_CONCEPT_ID":"    8555","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2744,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.478"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.702673 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018910\nunitConceptId =     8748\nplausibleValueHigh =           76.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018910\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           76.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018910\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018910 (ALKALINE PHOSPHATASE.BONE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value higher than           76.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018910","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2745,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.479"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.989418 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3018910\nunitConceptId =     8842\nplausibleValueHigh =           76.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3018910\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           76.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3018910\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3018910 (ALKALINE PHOSPHATASE.BONE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than           76.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3018910","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2746,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.480"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.472199 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019069\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019069\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019069\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019069 (MONOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019069","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2747,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.481"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.635747 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019069\nunitConceptId =     9234\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019069\n\t\tand m.unit_concept_id =     9234\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019069\n\tand unit_concept_id =     9234\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019069 (MONOCYTES/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     9234 (VOLUME PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019069","UNIT_CONCEPT_ID":"    9234","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2748,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.482"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.956977 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019198\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019198\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019198\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019198 (LYMPHOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019198","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2749,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.483"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.755533 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019198\nunitConceptId =     8647\nplausibleValueHigh =         3000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019198\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         3000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019198\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019198 (LYMPHOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value higher than         3000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019198","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2750,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.484"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.982857 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019198\nunitConceptId =     8848\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019198\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019198\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019198 (LYMPHOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019198","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2751,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.485"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.734934 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019550\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019550\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019550\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019550 (SODIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019550","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2752,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.486"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.720033 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019550\nunitConceptId =     8753\nplausibleValueHigh =          150.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019550\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          150.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019550\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019550 (SODIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than          150.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019550","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2753,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.487"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.977831 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019550\nunitConceptId =     9557\nplausibleValueHigh =          150.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019550\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          150.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019550\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019550 (SODIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value higher than          150.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019550","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2754,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.488"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.631365 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019676\nunitConceptId =     8840\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019676\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019676\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019676 (BILIRUBIN.CONJUGATED [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019676","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2755,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.489"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.534568 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019800\nunitConceptId =     8748\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019800\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019800\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019800 (TROPONIN T.CARDIAC [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019800","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2756,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.490"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.503012 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019800\nunitConceptId =     8842\nplausibleValueHigh =           40.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019800\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           40.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019800\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019800 (TROPONIN T.CARDIAC [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than           40.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019800","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2757,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.491"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.437603 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019812\nunitConceptId =     8751\nplausibleValueHigh =          150.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019812\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          150.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019812\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019812 (KAPPA LIGHT CHAINS [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value higher than          150.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019812","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2758,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.492"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.483681 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019812\nunitConceptId =     8840\nplausibleValueHigh =          500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019812\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019812\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019812 (KAPPA LIGHT CHAINS [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019812","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2759,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.493"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.741116 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019897\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019897\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019897\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019897 (ERYTHROCYTE DISTRIBUTION WIDTH [RATIO] BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019897","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2760,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.494"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.735877 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019897\nunitConceptId =     8583\nplausibleValueHigh =           54.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019897\n\t\tand m.unit_concept_id =     8583\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           54.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019897\n\tand unit_concept_id =     8583\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019897 (ERYTHROCYTE DISTRIBUTION WIDTH [RATIO] BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8583 (FEMTOLITER), the number and percent of records that have a value higher than           54.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019897","UNIT_CONCEPT_ID":"    8583","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2761,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.495"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.857915 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3015232\nunitConceptId =     8840\nplausibleValueHigh =          500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3015232\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3015232\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3015232 (CHOLESTEROL [MASS/VOLUME] IN BODY FLUID) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3015232","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2762,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.496"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.718698 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019900\nunitConceptId =     8840\nplausibleValueHigh =          500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019900\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019900\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019900 (CHOLESTEROL [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019900","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2763,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.497"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.536156 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020138\nunitConceptId =     8753\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020138\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020138\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020138 (LACTATE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020138","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2764,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.498"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.987918 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020138\nunitConceptId =     8840\nplausibleValueHigh =          170.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020138\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          170.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020138\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020138 (LACTATE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          170.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020138","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2765,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.499"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.750565 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020149\nunitConceptId =     8736\nplausibleValueHigh =          716.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020149\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          716.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020149\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020149 (CALCIDIOL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value higher than          716.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020149","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2766,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.500"},{"NUM_VIOLATED_ROWS":6,"PCT_VIOLATED_ROWS":0.1,"NUM_DENOMINATOR_ROWS":60,"EXECUTION_TIME":"1.936069 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020149\nunitConceptId =     8842\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020149\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020149\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020149 (CALCIDIOL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020149","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2767,"FAILED":1,"THRESHOLD_VALUE":5,"_row":"19.501"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.735339 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020149\nunitConceptId =     8845\nplausibleValueHigh =          103.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020149\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          103.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020149\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020149 (CALCIDIOL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value higher than          103.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020149","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2768,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.502"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.820453 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020399\nunitConceptId =     8840\nplausibleValueHigh =          500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020399\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020399\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020399 (GLUCOSE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020399","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2769,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.503"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.471560 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020399\nunitConceptId =     8862\nplausibleValueHigh =          800.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020399\n\t\tand m.unit_concept_id =     8862\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          800.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020399\n\tand unit_concept_id =     8862\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020399 (GLUCOSE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8862 (MILLIOSMOLE PER KILOGRAM), the number and percent of records that have a value higher than          800.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020399","UNIT_CONCEPT_ID":"    8862","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2770,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.504"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.820726 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020416\nunitConceptId =     8554\nplausibleValueHigh =           60.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020416\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           60.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020416\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020416 (ERYTHROCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than           60.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020416","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2771,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.505"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.857581 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020416\nunitConceptId =     8713\nplausibleValueHigh =            6.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020416\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            6.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020416\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020416 (ERYTHROCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than            6.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020416","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2772,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.506"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.052744 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020416\nunitConceptId =     8785\nplausibleValueHigh =            5.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020416\n\t\tand m.unit_concept_id =     8785\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            5.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020416\n\tand unit_concept_id =     8785\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020416 (ERYTHROCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8785 (PER CUBIC MILLIMETER), the number and percent of records that have a value higher than            5.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020416","UNIT_CONCEPT_ID":"    8785","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2773,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.507"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.198845 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020416\nunitConceptId =     8815\nplausibleValueHigh =            6.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020416\n\t\tand m.unit_concept_id =     8815\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            6.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020416\n\tand unit_concept_id =     8815\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020416 (ERYTHROCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8815 (MILLION PER MICROLITER), the number and percent of records that have a value higher than            6.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020416","UNIT_CONCEPT_ID":"    8815","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2774,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.508"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.899735 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020416\nunitConceptId =     8816\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020416\n\t\tand m.unit_concept_id =     8816\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020416\n\tand unit_concept_id =     8816\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020416 (ERYTHROCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8816 (MILLION PER MILLILITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020416","UNIT_CONCEPT_ID":"    8816","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2775,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.509"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.096242 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020416\nunitConceptId =     8848\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020416\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020416\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020416 (ERYTHROCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020416","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2776,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.510"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.283833 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020416\nunitConceptId =     8961\nplausibleValueHigh =            5.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020416\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            5.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020416\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020416 (ERYTHROCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value higher than            5.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020416","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2777,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.511"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.121211 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020416\nunitConceptId =     9436\nplausibleValueHigh =            2.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020416\n\t\tand m.unit_concept_id =     9436\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            2.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020416\n\tand unit_concept_id =     9436\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020416 (ERYTHROCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9436 (THOUSAND PER MILLILITER), the number and percent of records that have a value higher than            2.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020416","UNIT_CONCEPT_ID":"    9436","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2778,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.512"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.904816 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020416\nunitConceptId =     9665\nplausibleValueHigh =            6.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020416\n\t\tand m.unit_concept_id =     9665\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            6.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020416\n\tand unit_concept_id =     9665\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020416 (ERYTHROCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9665 (MICROLITER), the number and percent of records that have a value higher than            6.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020416","UNIT_CONCEPT_ID":"    9665","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2779,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.513"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.931212 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020460\nunitConceptId =     8751\nplausibleValueHigh =           24.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020460\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           24.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020460\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020460 (C REACTIVE PROTEIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value higher than           24.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020460","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2780,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.514"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.773379 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020460\nunitConceptId =     8840\nplausibleValueHigh =            5.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020460\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            5.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020460\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020460 (C REACTIVE PROTEIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than            5.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020460","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2781,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.515"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.835335 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020509\nunitConceptId =     8523\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020509\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020509\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020509 (ALBUMIN/GLOBULIN [MASS RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020509","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2782,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.516"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.921122 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020564\nunitConceptId =     8749\nplausibleValueHigh =          200.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020564\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          200.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020564\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020564 (CREATININE [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value higher than          200.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020564","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2783,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.517"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.519395 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3009508\nunitConceptId =     8840\nplausibleValueHigh =          500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3009508\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3009508\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3009508 (CREATININE [MOLES/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3009508","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2784,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.518"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.373736 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020630\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020630\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020630\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020630 (PROTEIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020630","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2785,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.519"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.919989 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020630\nunitConceptId =     8636\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020630\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020630\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020630 (PROTEIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020630","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2786,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.520"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.541165 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020630\nunitConceptId =     8713\nplausibleValueHigh =           15.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020630\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           15.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020630\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020630 (PROTEIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than           15.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020630","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2787,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.521"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.966188 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020682\nunitConceptId =     8523\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020682\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020682\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020682 (ALBUMIN/CREATININE [RATIO] IN URINE) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020682","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2788,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.522"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.519608 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020891\nunitConceptId =     8517\nplausibleValueHigh =           71.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020891\n\t\tand m.unit_concept_id =     8517\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           71.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020891\n\tand unit_concept_id =     8517\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020891 (BODY TEMPERATURE) and UNIT_CONCEPT_ID     8517 (FARAD), the number and percent of records that have a value higher than           71.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020891","UNIT_CONCEPT_ID":"    8517","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2789,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.523"},{"NUM_VIOLATED_ROWS":3,"PCT_VIOLATED_ROWS":0.0062,"NUM_DENOMINATOR_ROWS":486,"EXECUTION_TIME":"1.611339 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3020891\nunitConceptId =   586323\nplausibleValueHigh =           45.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3020891\n\t\tand m.unit_concept_id =   586323\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           45.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3020891\n\tand unit_concept_id =   586323\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3020891 (BODY TEMPERATURE) and UNIT_CONCEPT_ID   586323 (DEGREE CELSIUS), the number and percent of records that have a value higher than           45.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3020891","UNIT_CONCEPT_ID":"  586323","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2790,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.524"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.804424 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3021044\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3021044\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3021044\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3021044 (IRON BINDING CAPACITY [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3021044","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2791,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.525"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.521928 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3021044\nunitConceptId =     8749\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3021044\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3021044\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3021044 (IRON BINDING CAPACITY [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3021044","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2792,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.526"},{"NUM_VIOLATED_ROWS":2,"PCT_VIOLATED_ROWS":0.0192,"NUM_DENOMINATOR_ROWS":104,"EXECUTION_TIME":"1.757425 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3021044\nunitConceptId =     8837\nplausibleValueHigh =          500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3021044\n\t\tand m.unit_concept_id =     8837\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3021044\n\tand unit_concept_id =     8837\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3021044 (IRON BINDING CAPACITY [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8837 (MICROGRAM PER DECILITER), the number and percent of records that have a value higher than          500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3021044","UNIT_CONCEPT_ID":"    8837","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2793,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.527"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":1018,"EXECUTION_TIME":"1.803897 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3021119\nunitConceptId =     8753\nplausibleValueHigh =            4.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3021119\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            4.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3021119\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3021119 (CALCIUM.IONIZED [MOLES/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than            4.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3021119","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2794,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.528"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.650924 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3021119\nunitConceptId =     8840\nplausibleValueHigh =            9.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3021119\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            9.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3021119\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3021119 (CALCIUM.IONIZED [MOLES/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than            9.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3021119","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2795,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.529"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.151715 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3021119\nunitConceptId =     9557\nplausibleValueHigh =            2.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3021119\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            2.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3021119\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3021119 (CALCIUM.IONIZED [MOLES/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value higher than            2.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3021119","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2796,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.530"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.788790 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3021447\nunitConceptId =     8876\nplausibleValueHigh =          127.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3021447\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          127.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3021447\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3021447 (CARBON DIOXIDE [PARTIAL PRESSURE] IN VENOUS BLOOD) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value higher than          127.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3021447","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2797,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.531"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.904177 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3021614\nunitConceptId =     8985\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3021614\n\t\tand m.unit_concept_id =     8985\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3021614\n\tand unit_concept_id =     8985\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3021614 (RHEUMATOID FACTOR [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8985 (INTERNATIONAL UNIT PER MILLILITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3021614","UNIT_CONCEPT_ID":"    8985","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2798,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.532"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.986118 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3021717\nunitConceptId =     8554\nplausibleValueHigh =           40.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3021717\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           40.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3021717\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3021717 (TRIIODOTHYRONINE RESIN UPTAKE (T3RU) IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than           40.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3021717","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2799,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.533"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.889006 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3021737\nunitConceptId =     8840\nplausibleValueHigh =          200.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3021737\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          200.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3021737\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3021737 (GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA --2 HOURS POST MEAL) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          200.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3021737","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2800,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.534"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.689049 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022038\nunitConceptId =     8840\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022038\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022038\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022038 (TRIGLYCERIDE [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022038","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2801,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.535"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.651380 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022096\nunitConceptId =     8554\nplausibleValueHigh =            2.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022096\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            2.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022096\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022096 (BASOPHILS/100 LEUKOCYTES IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than            2.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022096","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2802,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.536"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.973945 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022192\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022192\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022192\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022192 (TRIGLYCERIDE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022192","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2803,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.537"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.127328 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022192\nunitConceptId =     8753\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022192\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022192\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022192 (TRIGLYCERIDE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022192","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2804,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.538"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.950993 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022192\nunitConceptId =     8840\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022192\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022192\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022192 (TRIGLYCERIDE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022192","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2805,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.539"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.019605 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8510\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8510\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8510\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8510 (UNIT), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8510","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2806,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.540"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.949907 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8517\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8517\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8517\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8517 (FARAD), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8517","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2807,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.541"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.174010 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8519\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8519\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8519\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8519 (LITER), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8519","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2808,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.542"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.927120 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8523\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2809,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.543"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.020742 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8524\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8524\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8524\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8524 (TIMES), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8524","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2810,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.544"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.957976 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8554\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2811,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.545"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.357672 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8555\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8555\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8555\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8555 (SECOND), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8555","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2812,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.546"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.650877 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8576\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8576\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8576\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8576 (MILLIGRAM), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8576","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2813,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.547"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.866193 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8582\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8582\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8582\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8582 (CENTIMETER), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8582","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2814,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.548"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.825847 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8587\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8587\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8587\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8587 (MILLILITER), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8587","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2815,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.549"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.861169 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8753\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2816,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.550"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.990765 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8816\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8816\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8816\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8816 (MILLION PER MILLILITER), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8816","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2817,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.551"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.004200 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     8840\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2818,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.552"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.103890 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     9384\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     9384\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     9384\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     9384 (POINT), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    9384","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2819,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.553"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.573083 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     9529\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     9529\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     9529\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     9529 (KILOGRAM), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    9529","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2820,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.554"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.005621 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     9593\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     9593\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     9593\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     9593 (MILLISECOND), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    9593","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2821,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.555"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.634560 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     9624\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     9624\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     9624\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     9624 (PARSEC), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    9624","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2822,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.556"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803424 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022217\nunitConceptId =     9677\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022217\n\t\tand m.unit_concept_id =     9677\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022217\n\tand unit_concept_id =     9677\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022217 (INR IN PLATELET POOR PLASMA BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     9677 (VOLT), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022217","UNIT_CONCEPT_ID":"    9677","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2823,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.557"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.888305 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022466\nunitConceptId =     8860\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022466\n\t\tand m.unit_concept_id =     8860\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022466\n\tand unit_concept_id =     8860\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022466 (INSULIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8860 (MICROUNIT PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022466","UNIT_CONCEPT_ID":"    8860","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2824,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.558"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.947318 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022521\nunitConceptId =     8588\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022521\n\t\tand m.unit_concept_id =     8588\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022521\n\tand unit_concept_id =     8588\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022521 (ERYTHROCYTE SEDIMENTATION RATE BY WINTROBE METHOD) and UNIT_CONCEPT_ID     8588 (MILLIMETER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022521","UNIT_CONCEPT_ID":"    8588","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2825,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.559"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.285435 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022521\nunitConceptId =     8752\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022521\n\t\tand m.unit_concept_id =     8752\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022521\n\tand unit_concept_id =     8752\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022521 (ERYTHROCYTE SEDIMENTATION RATE BY WINTROBE METHOD) and UNIT_CONCEPT_ID     8752 (MILLIMETER PER HOUR), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022521","UNIT_CONCEPT_ID":"    8752","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2826,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.560"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":14,"EXECUTION_TIME":"1.820280 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022548\nunitConceptId =     8840\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022548\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022548\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022548 (GLUCOSE [MASS/VOLUME] IN CEREBRAL SPINAL FLUID) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022548","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2827,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.561"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.840460 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022616\nunitConceptId =     8751\nplausibleValueHigh =           40.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022616\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           40.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022616\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022616 (PHENYTOIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value higher than           40.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022616","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2828,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.562"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.587948 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022616\nunitConceptId =     8859\nplausibleValueHigh =           40.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022616\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           40.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022616\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022616 (PHENYTOIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value higher than           40.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022616","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2829,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.563"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.486221 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022709\nunitConceptId =     8848\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022709\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022709\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022709 (PROMYELOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022709","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2830,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.564"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.919140 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022756\nunitConceptId =     8636\nplausibleValueHigh =            2.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022756\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            2.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022756\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022756 (CERULOPLASMIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value higher than            2.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022756","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2831,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.565"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.758083 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022756\nunitConceptId =     8749\nplausibleValueHigh =          439.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022756\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          439.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022756\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022756 (CERULOPLASMIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value higher than          439.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022756","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2832,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.566"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.104815 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022756\nunitConceptId =     8751\nplausibleValueHigh =          412.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022756\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          412.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022756\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022756 (CERULOPLASMIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value higher than          412.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022756","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2833,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.567"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.804456 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022756\nunitConceptId =     8840\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022756\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022756\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022756 (CERULOPLASMIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022756","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2834,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.568"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.026670 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022826\nunitConceptId =     8723\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022826\n\t\tand m.unit_concept_id =     8723\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022826\n\tand unit_concept_id =     8723\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022826 (MICROALBUMIN/CREATININE [RATIO] IN URINE) and UNIT_CONCEPT_ID     8723 (MILLIGRAM PER GRAM), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022826","UNIT_CONCEPT_ID":"    8723","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2835,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.569"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.951251 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022826\nunitConceptId =     8838\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022826\n\t\tand m.unit_concept_id =     8838\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022826\n\tand unit_concept_id =     8838\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022826 (MICROALBUMIN/CREATININE [RATIO] IN URINE) and UNIT_CONCEPT_ID     8838 (MICROGRAM PER MILLIGRAM), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022826","UNIT_CONCEPT_ID":"    8838","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2836,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.570"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.836899 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022826\nunitConceptId =     9075\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022826\n\t\tand m.unit_concept_id =     9075\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022826\n\tand unit_concept_id =     9075\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022826 (MICROALBUMIN/CREATININE [RATIO] IN URINE) and UNIT_CONCEPT_ID     9075 (MILLIGRAM PER MILLIMOLE OF CREATININE), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022826","UNIT_CONCEPT_ID":"    9075","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2837,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.571"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.126379 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022914\nunitConceptId =     8763\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022914\n\t\tand m.unit_concept_id =     8763\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022914\n\tand unit_concept_id =     8763\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022914 (CANCER AG 19-9 [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8763 (UNIT PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022914","UNIT_CONCEPT_ID":"    8763","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2838,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.572"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.204011 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022914\nunitConceptId =     8810\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022914\n\t\tand m.unit_concept_id =     8810\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022914\n\tand unit_concept_id =     8810\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022914 (CANCER AG 19-9 [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8810 (KILOUNIT PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022914","UNIT_CONCEPT_ID":"    8810","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2839,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.573"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.888381 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022914\nunitConceptId =     8980\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022914\n\t\tand m.unit_concept_id =     8980\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022914\n\tand unit_concept_id =     8980\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022914 (CANCER AG 19-9 [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8980 (ARBITRARY UNIT PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022914","UNIT_CONCEPT_ID":"    8980","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2840,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.574"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.043608 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3022914\nunitConceptId =     8985\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3022914\n\t\tand m.unit_concept_id =     8985\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3022914\n\tand unit_concept_id =     8985\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3022914 (CANCER AG 19-9 [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8985 (INTERNATIONAL UNIT PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3022914","UNIT_CONCEPT_ID":"    8985","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2841,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.575"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.772538 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023017\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023017\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023017\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023017 (IRON/TRANSFERRIN [MASS RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023017","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2842,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.576"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.487832 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023103\nunitConceptId =     8753\nplausibleValueHigh =            8.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023103\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            8.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023103\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023103 (POTASSIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than            8.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023103","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2843,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.577"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.644686 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023103\nunitConceptId =     9557\nplausibleValueHigh =            8.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023103\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            8.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023103\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023103 (POTASSIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value higher than            8.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023103","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2844,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.578"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.850868 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023103\nunitConceptId =     9573\nplausibleValueHigh =            8.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023103\n\t\tand m.unit_concept_id =     9573\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            8.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023103\n\tand unit_concept_id =     9573\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023103 (POTASSIUM [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9573 (MILLIMOLE), the number and percent of records that have a value higher than            8.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023103","UNIT_CONCEPT_ID":"    9573","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2845,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.579"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.841458 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023314\nunitConceptId =     8554\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023314\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023314\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023314 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023314","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2846,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.580"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.868035 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023314\nunitConceptId = 44777604\nplausibleValueHigh =           47.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023314\n\t\tand m.unit_concept_id = 44777604\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           47.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023314\n\tand unit_concept_id = 44777604\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023314 (HEMATOCRIT [VOLUME FRACTION] OF BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID 44777604 (LITER PER LITER), the number and percent of records that have a value higher than           47.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023314","UNIT_CONCEPT_ID":"44777604","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2847,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.581"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.449621 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023351\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023351\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023351\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023351 (EUROPEAN HOUSE DUST MITE IGE AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023351","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2848,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.582"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.541368 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023351\nunitConceptId =     8810\nplausibleValueHigh =           40.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023351\n\t\tand m.unit_concept_id =     8810\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           40.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023351\n\tand unit_concept_id =     8810\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023351 (EUROPEAN HOUSE DUST MITE IGE AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8810 (KILOUNIT PER LITER), the number and percent of records that have a value higher than           40.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023351","UNIT_CONCEPT_ID":"    8810","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2849,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.583"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.587822 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023351\nunitConceptId =     8848\nplausibleValueHigh =           20.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023351\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           20.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023351\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023351 (EUROPEAN HOUSE DUST MITE IGE AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than           20.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023351","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2850,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.584"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.903773 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023361\nunitConceptId =     8748\nplausibleValueHigh =         1500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023361\n\t\tand m.unit_concept_id =     8748\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023361\n\tand unit_concept_id =     8748\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023361 (FIBRIN D-DIMER [UNITS/VOLUME] IN PLATELET POOR PLASMA) and UNIT_CONCEPT_ID     8748 (MICROGRAM PER LITER), the number and percent of records that have a value higher than         1500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023361","UNIT_CONCEPT_ID":"    8748","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2851,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.585"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.568288 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023361\nunitConceptId =     8751\nplausibleValueHigh =            2.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023361\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            2.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023361\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023361 (FIBRIN D-DIMER [UNITS/VOLUME] IN PLATELET POOR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value higher than            2.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023361","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2852,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.586"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.561965 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023361\nunitConceptId =     8842\nplausibleValueHigh =         2500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023361\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         2500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023361\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023361 (FIBRIN D-DIMER [UNITS/VOLUME] IN PLATELET POOR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than         2500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023361","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2853,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.587"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.566296 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023361\nunitConceptId =     8859\nplausibleValueHigh =            3.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023361\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            3.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023361\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023361 (FIBRIN D-DIMER [UNITS/VOLUME] IN PLATELET POOR PLASMA) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value higher than            3.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023361","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2854,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.588"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.764220 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023420\nunitConceptId =     8985\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023420\n\t\tand m.unit_concept_id =     8985\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023420\n\tand unit_concept_id =     8985\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023420 (DNA DOUBLE STRAND AB [UNITS/VOLUME] IN SERUM) and UNIT_CONCEPT_ID     8985 (INTERNATIONAL UNIT PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023420","UNIT_CONCEPT_ID":"    8985","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2855,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.589"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.982474 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023465\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023465\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023465\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023465 (GAMMA GLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023465","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2856,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.590"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.896456 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023465\nunitConceptId =     8636\nplausibleValueHigh =           20.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023465\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           20.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023465\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023465 (GAMMA GLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value higher than           20.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023465","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2857,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.591"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.804104 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023465\nunitConceptId =     8713\nplausibleValueHigh =            2.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023465\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            2.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023465\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023465 (GAMMA GLOBULIN [MASS/VOLUME] IN SERUM OR PLASMA BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than            2.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023465","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2858,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.592"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.665357 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023520\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023520\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023520\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023520 (RETICULOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023520","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2859,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.593"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.681213 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023520\nunitConceptId =     8848\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023520\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023520\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023520 (RETICULOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023520","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2860,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.594"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.882276 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023520\nunitConceptId =     8961\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023520\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023520\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023520 (RETICULOCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023520","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2861,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.595"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.752096 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023599\nunitConceptId =     8583\nplausibleValueHigh =          120.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023599\n\t\tand m.unit_concept_id =     8583\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          120.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023599\n\tand unit_concept_id =     8583\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023599 (MCV [ENTITIC VOLUME] BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8583 (FEMTOLITER), the number and percent of records that have a value higher than          120.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023599","UNIT_CONCEPT_ID":"    8583","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2862,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.596"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.572331 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023643\nunitConceptId =     8816\nplausibleValueHigh =          328.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023643\n\t\tand m.unit_concept_id =     8816\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          328.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023643\n\tand unit_concept_id =     8816\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023643 (BLASTS/100 LEUKOCYTES IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8816 (MILLION PER MILLILITER), the number and percent of records that have a value higher than          328.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023643","UNIT_CONCEPT_ID":"    8816","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2863,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.597"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.857340 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023643\nunitConceptId =     8848\nplausibleValueHigh =          112.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023643\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          112.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023643\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023643 (BLASTS/100 LEUKOCYTES IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than          112.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023643","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2864,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.598"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.572114 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023694\nunitConceptId =     8647\nplausibleValueHigh =          200.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023694\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          200.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023694\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023694 (LEUKOCYTES [#/VOLUME] IN CEREBRAL SPINAL FLUID BY MANUAL COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value higher than          200.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023694","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2865,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.599"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.919558 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023694\nunitConceptId =     8785\nplausibleValueHigh =           11.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023694\n\t\tand m.unit_concept_id =     8785\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           11.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023694\n\tand unit_concept_id =     8785\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023694 (LEUKOCYTES [#/VOLUME] IN CEREBRAL SPINAL FLUID BY MANUAL COUNT) and UNIT_CONCEPT_ID     8785 (PER CUBIC MILLIMETER), the number and percent of records that have a value higher than           11.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023694","UNIT_CONCEPT_ID":"    8785","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2866,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.600"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.542225 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3019900\nunitConceptId =     8753\nplausibleValueHigh =           15.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3019900\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           15.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3019900\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3019900 (CHOLESTEROL [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than           15.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3019900","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2867,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.601"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.735433 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024128\nunitConceptId =     8713\nplausibleValueHigh =           37.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024128\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           37.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024128\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024128 (BILIRUBIN.TOTAL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than           37.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024128","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2868,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.602"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.705698 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024128\nunitConceptId =     8749\nplausibleValueHigh =          530.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024128\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          530.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024128\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024128 (BILIRUBIN.TOTAL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value higher than          530.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024128","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2869,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.603"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.003670 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024128\nunitConceptId =     8753\nplausibleValueHigh =          143.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024128\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          143.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024128\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024128 (BILIRUBIN.TOTAL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than          143.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024128","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2870,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.604"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.771824 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024128\nunitConceptId =     8840\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024128\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024128\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024128 (BILIRUBIN.TOTAL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024128","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2871,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.605"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":20981,"EXECUTION_TIME":"1.704028 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024171\nunitConceptId =     8541\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024171\n\t\tand m.unit_concept_id =     8541\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024171\n\tand unit_concept_id =     8541\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024171 (RESPIRATORY RATE) and UNIT_CONCEPT_ID     8541 (PER MINUTE), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024171","UNIT_CONCEPT_ID":"    8541","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2872,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.606"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.942111 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024171\nunitConceptId =     9211\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024171\n\t\tand m.unit_concept_id =     9211\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024171\n\tand unit_concept_id =     9211\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024171 (RESPIRATORY RATE) and UNIT_CONCEPT_ID     9211 (MINUTE), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024171","UNIT_CONCEPT_ID":"    9211","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2873,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.607"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.751041 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024250\nunitConceptId =     8753\nplausibleValueHigh =            3.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024250\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            3.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024250\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024250 (CALCIUM.IONIZED [MASS/VOLUME] IN SERUM OR PLASMA BY ION-SELECTIVE MEMBRANE ELECTRODE (ISE)) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than            3.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024250","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2874,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.608"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.125762 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024250\nunitConceptId =     8840\nplausibleValueHigh =         5800.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024250\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         5800.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024250\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024250 (CALCIUM.IONIZED [MASS/VOLUME] IN SERUM OR PLASMA BY ION-SELECTIVE MEMBRANE ELECTRODE (ISE)) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than         5800.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024250","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2875,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.609"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.567519 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024354\nunitConceptId =     8876\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024354\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024354\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024354 (OXYGEN [PARTIAL PRESSURE] IN VENOUS BLOOD) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024354","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2876,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.610"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.983080 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024386\nunitConceptId =     8583\nplausibleValueHigh =           20.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024386\n\t\tand m.unit_concept_id =     8583\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           20.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024386\n\tand unit_concept_id =     8583\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024386 (PLATELET MEAN VOLUME [ENTITIC VOLUME] IN BLOOD BY REES-ECKER) and UNIT_CONCEPT_ID     8583 (FEMTOLITER), the number and percent of records that have a value higher than           20.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024386","UNIT_CONCEPT_ID":"    8583","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2877,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.611"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.866514 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024561\nunitConceptId =     8636\nplausibleValueHigh =           18.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024561\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           18.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024561\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024561 (ALBUMIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value higher than           18.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024561","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2878,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.612"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.810074 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024561\nunitConceptId =     8713\nplausibleValueHigh =           18.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024561\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           18.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024561\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024561 (ALBUMIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than           18.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024561","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2879,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.613"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.488474 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024561\nunitConceptId =     8753\nplausibleValueHigh =           18.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024561\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           18.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024561\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024561 (ALBUMIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than           18.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024561","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2880,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.614"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.352093 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024561\nunitConceptId =     8840\nplausibleValueHigh =        18000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024561\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >        18000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024561\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024561 (ALBUMIN [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than        18000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024561","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2881,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.615"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.450768 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024641\nunitConceptId =     8753\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024641\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024641\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024641 (UREA NITROGEN [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024641","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2882,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.616"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.305293 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024641\nunitConceptId =     8840\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024641\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024641\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024641 (UREA NITROGEN [MOLES/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024641","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2883,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.617"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.834944 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024653\nunitConceptId =     8519\nplausibleValueHigh =            4.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024653\n\t\tand m.unit_concept_id =     8519\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            4.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024653\n\tand unit_concept_id =     8519\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024653 (FEV1) and UNIT_CONCEPT_ID     8519 (LITER), the number and percent of records that have a value higher than            4.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024653","UNIT_CONCEPT_ID":"    8519","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2884,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.618"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.104751 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024653\nunitConceptId =     8523\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024653\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024653\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024653 (FEV1) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024653","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2885,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.619"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.820826 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024653\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024653\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024653\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024653 (FEV1) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024653","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2886,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.620"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.604597 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024653\nunitConceptId =     8587\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024653\n\t\tand m.unit_concept_id =     8587\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024653\n\tand unit_concept_id =     8587\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024653 (FEV1) and UNIT_CONCEPT_ID     8587 (MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024653","UNIT_CONCEPT_ID":"    8587","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2887,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.621"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.072628 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024653\nunitConceptId =     8698\nplausibleValueHigh =            3.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024653\n\t\tand m.unit_concept_id =     8698\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            3.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024653\n\tand unit_concept_id =     8698\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024653 (FEV1) and UNIT_CONCEPT_ID     8698 (LITER PER MINUTE), the number and percent of records that have a value higher than            3.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024653","UNIT_CONCEPT_ID":"    8698","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2888,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.622"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.166696 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024653\nunitConceptId =     9330\nplausibleValueHigh =            4.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024653\n\t\tand m.unit_concept_id =     9330\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            4.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024653\n\tand unit_concept_id =     9330\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024653 (FEV1) and UNIT_CONCEPT_ID     9330 (INCH (US)), the number and percent of records that have a value higher than            4.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024653","UNIT_CONCEPT_ID":"    9330","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2889,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.623"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.083449 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024731\nunitConceptId =     8583\nplausibleValueHigh =          120.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024731\n\t\tand m.unit_concept_id =     8583\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          120.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024731\n\tand unit_concept_id =     8583\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024731 (MCV [ENTITIC VOLUME]) and UNIT_CONCEPT_ID     8583 (FEMTOLITER), the number and percent of records that have a value higher than          120.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024731","UNIT_CONCEPT_ID":"    8583","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2890,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.624"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.120471 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024762\nunitConceptId =     8840\nplausibleValueHigh =          200.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024762\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          200.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024762\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024762 (GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA --8 HOURS FASTING) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          200.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024762","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2891,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.625"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.920369 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024763\nunitConceptId =     8923\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024763\n\t\tand m.unit_concept_id =     8923\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024763\n\tand unit_concept_id =     8923\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024763 (RHEUMATOID FACTOR [UNITS/VOLUME] IN SERUM BY NEPHELOMETRY) and UNIT_CONCEPT_ID     8923 (INTERNATIONAL UNIT PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024763","UNIT_CONCEPT_ID":"    8923","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2892,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.626"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.259834 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024763\nunitConceptId =     8985\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024763\n\t\tand m.unit_concept_id =     8985\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024763\n\tand unit_concept_id =     8985\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024763 (RHEUMATOID FACTOR [UNITS/VOLUME] IN SERUM BY NEPHELOMETRY) and UNIT_CONCEPT_ID     8985 (INTERNATIONAL UNIT PER MILLILITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024763","UNIT_CONCEPT_ID":"    8985","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2893,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.627"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.374220 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024929\nunitConceptId =     8647\nplausibleValueHigh =      1000000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024929\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >      1000000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024929\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024929 (PLATELETS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value higher than      1000000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024929","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2894,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.628"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.884145 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024929\nunitConceptId =     8785\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024929\n\t\tand m.unit_concept_id =     8785\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024929\n\tand unit_concept_id =     8785\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024929 (PLATELETS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8785 (PER CUBIC MILLIMETER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024929","UNIT_CONCEPT_ID":"    8785","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2895,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.629"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.907773 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024929\nunitConceptId =     8816\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024929\n\t\tand m.unit_concept_id =     8816\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024929\n\tand unit_concept_id =     8816\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024929 (PLATELETS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8816 (MILLION PER MILLILITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024929","UNIT_CONCEPT_ID":"    8816","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2896,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.630"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.085132 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024929\nunitConceptId =     8848\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024929\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024929\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024929 (PLATELETS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024929","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2897,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.631"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.808328 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024929\nunitConceptId =     8961\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024929\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024929\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024929 (PLATELETS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024929","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2898,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.632"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.793344 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3024929\nunitConceptId =     9444\nplausibleValueHigh =          600.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3024929\n\t\tand m.unit_concept_id =     9444\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          600.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3024929\n\tand unit_concept_id =     9444\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3024929 (PLATELETS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9444 (BILLION PER LITER), the number and percent of records that have a value higher than          600.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3024929","UNIT_CONCEPT_ID":"    9444","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2899,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.633"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.003602 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025285\nunitConceptId =     8725\nplausibleValueHigh =          500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025285\n\t\tand m.unit_concept_id =     8725\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025285\n\tand unit_concept_id =     8725\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025285 (ESTRADIOL (E2) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8725 (NANOGRAM PER LITER), the number and percent of records that have a value higher than          500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025285","UNIT_CONCEPT_ID":"    8725","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2900,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.634"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.883626 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025285\nunitConceptId =     8729\nplausibleValueHigh =          800.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025285\n\t\tand m.unit_concept_id =     8729\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          800.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025285\n\tand unit_concept_id =     8729\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025285 (ESTRADIOL (E2) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8729 (PICOMOLE PER LITER), the number and percent of records that have a value higher than          800.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025285","UNIT_CONCEPT_ID":"    8729","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2901,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.635"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.603021 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025285\nunitConceptId =     8817\nplausibleValueHigh =           20.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025285\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           20.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025285\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025285 (ESTRADIOL (E2) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value higher than           20.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025285","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2902,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.636"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.965806 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025285\nunitConceptId =     8845\nplausibleValueHigh =          500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025285\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025285\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025285 (ESTRADIOL (E2) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value higher than          500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025285","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2903,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.637"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.888970 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025315\nunitConceptId =     8504\nplausibleValueHigh =       500000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025315\n\t\tand m.unit_concept_id =     8504\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >       500000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025315\n\tand unit_concept_id =     8504\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025315 (BODY WEIGHT) and UNIT_CONCEPT_ID     8504 (GRAM), the number and percent of records that have a value higher than       500000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025315","UNIT_CONCEPT_ID":"    8504","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2904,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.638"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.874615 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025315\nunitConceptId =     8576\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025315\n\t\tand m.unit_concept_id =     8576\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025315\n\tand unit_concept_id =     8576\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025315 (BODY WEIGHT) and UNIT_CONCEPT_ID     8576 (MILLIGRAM), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025315","UNIT_CONCEPT_ID":"    8576","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2905,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.639"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.552962 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025315\nunitConceptId =     8739\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025315\n\t\tand m.unit_concept_id =     8739\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025315\n\tand unit_concept_id =     8739\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025315 (BODY WEIGHT) and UNIT_CONCEPT_ID     8739 (POUND (US)), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025315","UNIT_CONCEPT_ID":"    8739","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2906,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.640"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.422154 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025315\nunitConceptId =     9373\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025315\n\t\tand m.unit_concept_id =     9373\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025315\n\tand unit_concept_id =     9373\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025315 (BODY WEIGHT) and UNIT_CONCEPT_ID     9373 (OUNCE (AVOIRDUPOIS)), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025315","UNIT_CONCEPT_ID":"    9373","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2907,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.641"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":127,"EXECUTION_TIME":"3.156413 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025315\nunitConceptId =     9529\nplausibleValueHigh =          500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025315\n\t\tand m.unit_concept_id =     9529\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025315\n\tand unit_concept_id =     9529\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025315 (BODY WEIGHT) and UNIT_CONCEPT_ID     9529 (KILOGRAM), the number and percent of records that have a value higher than          500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025315","UNIT_CONCEPT_ID":"    9529","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2908,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.642"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.936011 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025455\nunitConceptId =     8842\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025455\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025455\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025455 (ESTRIOL (E3).UNCONJUGATED [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025455","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2909,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.643"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.603045 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025673\nunitConceptId =     8840\nplausibleValueHigh =          200.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025673\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          200.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025673\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025673 (GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA --2 HOURS POST 75 G GLUCOSE PO) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          200.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025673","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2910,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.644"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.788340 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025696\nunitConceptId =     8753\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025696\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025696\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025696 (LITHIUM [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025696","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2911,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.645"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.789314 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025696\nunitConceptId =     8859\nplausibleValueHigh =            3.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025696\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            3.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025696\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025696 (LITHIUM [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value higher than            3.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025696","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2912,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.646"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.719777 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3025696\nunitConceptId =     9557\nplausibleValueHigh =          150.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3025696\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          150.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3025696\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3025696 (LITHIUM [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value higher than          150.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3025696","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2913,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.647"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":80,"EXECUTION_TIME":"1.789350 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026250\nunitConceptId =     8842\nplausibleValueHigh =           15.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026250\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           15.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026250\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026250 (TACROLIMUS [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than           15.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026250","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2914,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.648"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.973013 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2915,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.649"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.336887 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     8583\nplausibleValueHigh =       500000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     8583\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >       500000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     8583\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8583 (FEMTOLITER), the number and percent of records that have a value higher than       500000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    8583","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2916,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.650"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.142717 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     8587\nplausibleValueHigh =            5.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     8587\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            5.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     8587\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8587 (MILLILITER), the number and percent of records that have a value higher than            5.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    8587","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2917,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.651"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.988074 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     8588\nplausibleValueHigh =            8.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     8588\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            8.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     8588\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8588 (MILLIMETER), the number and percent of records that have a value higher than            8.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    8588","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2918,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.652"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.735850 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     8647\nplausibleValueHigh =           45.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           45.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value higher than           45.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2919,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.653"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.926397 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     8686\nplausibleValueHigh =        20000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     8686\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >        20000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     8686\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8686 (CUBIC MILLIMETER), the number and percent of records that have a value higher than        20000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    8686","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2920,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.654"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.935643 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     8713\nplausibleValueHigh =            6.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            6.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than            6.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2921,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.655"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.519129 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     8786\nplausibleValueHigh =           40.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     8786\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           40.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     8786\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8786 (PER HIGH POWER FIELD), the number and percent of records that have a value higher than           40.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    8786","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2922,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.656"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.852249 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     8815\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     8815\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     8815\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8815 (MILLION PER MICROLITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    8815","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2923,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.657"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.089861 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     8888\nplausibleValueHigh =          550.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     8888\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          550.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     8888\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8888 (CELLS PER CUBIC MILLIMETER), the number and percent of records that have a value higher than          550.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    8888","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2924,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.658"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.419299 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId =     9665\nplausibleValueHigh =            6.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id =     9665\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            6.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id =     9665\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     9665 (MICROLITER), the number and percent of records that have a value higher than            6.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"    9665","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2925,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.659"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.719427 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026361\nunitConceptId = 45744812\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026361\n\t\tand m.unit_concept_id = 45744812\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026361\n\tand unit_concept_id = 45744812\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026361 (ERYTHROCYTES [#/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID 45744812 (CELLS), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026361","UNIT_CONCEPT_ID":"45744812","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2926,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.660"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.576090 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3023884\nunitConceptId =     8554\nplausibleValueHigh =           86.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3023884\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           86.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3023884\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3023884 (CHOLESTEROL IN HDL/CHOLESTEROL.TOTAL [MASS RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than           86.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3023884","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2927,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.661"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.481323 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026782\nunitConceptId =     8605\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026782\n\t\tand m.unit_concept_id =     8605\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026782\n\tand unit_concept_id =     8605\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026782 (OSMOLALITY OF URINE) and UNIT_CONCEPT_ID     8605 (MILLIOSMOLE), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026782","UNIT_CONCEPT_ID":"    8605","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2928,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.662"},{"NUM_VIOLATED_ROWS":2,"PCT_VIOLATED_ROWS":0.0145,"NUM_DENOMINATOR_ROWS":138,"EXECUTION_TIME":"1.617874 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026782\nunitConceptId =     8862\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026782\n\t\tand m.unit_concept_id =     8862\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026782\n\tand unit_concept_id =     8862\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026782 (OSMOLALITY OF URINE) and UNIT_CONCEPT_ID     8862 (MILLIOSMOLE PER KILOGRAM), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026782","UNIT_CONCEPT_ID":"    8862","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2929,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.663"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.103669 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026782\nunitConceptId =     9591\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026782\n\t\tand m.unit_concept_id =     9591\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026782\n\tand unit_concept_id =     9591\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026782 (OSMOLALITY OF URINE) and UNIT_CONCEPT_ID     9591 (MILLIOSMOLE PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026782","UNIT_CONCEPT_ID":"    9591","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2930,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.664"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.787644 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026910\nunitConceptId =     8510\nplausibleValueHigh =           60.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026910\n\t\tand m.unit_concept_id =     8510\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           60.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026910\n\tand unit_concept_id =     8510\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026910 (GAMMA GLUTAMYL TRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8510 (UNIT), the number and percent of records that have a value higher than           60.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026910","UNIT_CONCEPT_ID":"    8510","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2931,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.665"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.951053 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026910\nunitConceptId =     8645\nplausibleValueHigh =           80.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026910\n\t\tand m.unit_concept_id =     8645\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           80.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026910\n\tand unit_concept_id =     8645\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026910 (GAMMA GLUTAMYL TRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8645 (UNIT PER LITER), the number and percent of records that have a value higher than           80.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026910","UNIT_CONCEPT_ID":"    8645","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2932,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.666"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.735330 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026910\nunitConceptId =     8859\nplausibleValueHigh =           70.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026910\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           70.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026910\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026910 (GAMMA GLUTAMYL TRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value higher than           70.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026910","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2933,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.667"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.988704 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026910\nunitConceptId =     8923\nplausibleValueHigh =           90.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026910\n\t\tand m.unit_concept_id =     8923\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           90.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026910\n\tand unit_concept_id =     8923\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026910 (GAMMA GLUTAMYL TRANSFERASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8923 (INTERNATIONAL UNIT PER LITER), the number and percent of records that have a value higher than           90.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026910","UNIT_CONCEPT_ID":"    8923","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2934,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.668"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.719647 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026925\nunitConceptId =     8729\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026925\n\t\tand m.unit_concept_id =     8729\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026925\n\tand unit_concept_id =     8729\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026925 (TRIIODOTHYRONINE (T3) FREE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8729 (PICOMOLE PER LITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026925","UNIT_CONCEPT_ID":"    8729","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2935,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.669"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.762159 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026925\nunitConceptId =     8820\nplausibleValueHigh =        10000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026925\n\t\tand m.unit_concept_id =     8820\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >        10000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026925\n\tand unit_concept_id =     8820\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026925 (TRIIODOTHYRONINE (T3) FREE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8820 (PICOGRAM PER DECILITER), the number and percent of records that have a value higher than        10000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026925","UNIT_CONCEPT_ID":"    8820","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2936,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.670"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.358592 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026925\nunitConceptId =     8845\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026925\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026925\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026925 (TRIIODOTHYRONINE (T3) FREE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026925","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2937,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.671"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.820053 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027035\nunitConceptId =     8723\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027035\n\t\tand m.unit_concept_id =     8723\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027035\n\tand unit_concept_id =     8723\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027035 (ALBUMIN [MASS/TIME] IN 24 HOUR URINE) and UNIT_CONCEPT_ID     8723 (MILLIGRAM PER GRAM), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027035","UNIT_CONCEPT_ID":"    8723","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2938,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.672"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.872791 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027035\nunitConceptId =     8840\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027035\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027035\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027035 (ALBUMIN [MASS/TIME] IN 24 HOUR URINE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027035","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2939,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.673"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.572567 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027035\nunitConceptId =     8859\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027035\n\t\tand m.unit_concept_id =     8859\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027035\n\tand unit_concept_id =     8859\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027035 (ALBUMIN [MASS/TIME] IN 24 HOUR URINE) and UNIT_CONCEPT_ID     8859 (MICROGRAM PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027035","UNIT_CONCEPT_ID":"    8859","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2940,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.674"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"3.195898 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027035\nunitConceptId =     8909\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027035\n\t\tand m.unit_concept_id =     8909\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027035\n\tand unit_concept_id =     8909\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027035 (ALBUMIN [MASS/TIME] IN 24 HOUR URINE) and UNIT_CONCEPT_ID     8909 (MILLIGRAM PER 24 HOURS), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027035","UNIT_CONCEPT_ID":"    8909","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2941,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.675"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.498870 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3026453\nunitConceptId =     8840\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3026453\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3026453\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3026453 (CHOLESTEROL IN IDL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3026453","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2942,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.676"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.752251 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027114\nunitConceptId =     8713\nplausibleValueHigh =           36.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027114\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           36.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027114\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027114 (CHOLESTEROL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than           36.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027114","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2943,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.677"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.882593 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027114\nunitConceptId =     8840\nplausibleValueHigh =          500.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027114\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          500.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027114\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027114 (CHOLESTEROL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          500.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027114","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2944,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.678"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.703843 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027144\nunitConceptId =     8842\nplausibleValueHigh =           10.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027144\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           10.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027144\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027144 (PROGESTERONE [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than           10.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027144","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2945,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.679"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.074302 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027238\nunitConceptId =     8985\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027238\n\t\tand m.unit_concept_id =     8985\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027238\n\tand unit_concept_id =     8985\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027238 (THYROPEROXIDASE AB [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8985 (INTERNATIONAL UNIT PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027238","UNIT_CONCEPT_ID":"    8985","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2946,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.680"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.541651 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027273\nunitConceptId =     8753\nplausibleValueHigh =           47.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027273\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           47.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027273\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027273 (BICARBONATE [MOLES/VOLUME] IN VENOUS BLOOD) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than           47.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027273","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2947,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.681"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.804983 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027273\nunitConceptId =     9557\nplausibleValueHigh =           47.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027273\n\t\tand m.unit_concept_id =     9557\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           47.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027273\n\tand unit_concept_id =     9557\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027273 (BICARBONATE [MOLES/VOLUME] IN VENOUS BLOOD) and UNIT_CONCEPT_ID     9557 (MILLIEQUIVALENT PER LITER), the number and percent of records that have a value higher than           47.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027273","UNIT_CONCEPT_ID":"    9557","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2948,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.682"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.821285 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027361\nunitConceptId =     8842\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027361\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027361\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027361 (CHOLECALCIFEROL (VIT D3) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027361","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2949,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.683"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.833411 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027361\nunitConceptId =     8845\nplausibleValueHigh =          124.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027361\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          124.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027361\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027361 (CHOLECALCIFEROL (VIT D3) [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value higher than          124.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027361","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2950,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.684"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.481275 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027457\nunitConceptId =     8840\nplausibleValueHigh =          200.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027457\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          200.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027457\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027457 (GLUCOSE [MASS/VOLUME] IN SERUM OR PLASMA --3 HOURS POST 100 G GLUCOSE PO) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          200.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027457","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2951,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.685"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.608951 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027597\nunitConceptId =     8713\nplausibleValueHigh =           35.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027597\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           35.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027597\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027597 (BILIRUBIN.DIRECT [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than           35.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027597","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2952,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.686"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.983444 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027597\nunitConceptId =     8749\nplausibleValueHigh =          440.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027597\n\t\tand m.unit_concept_id =     8749\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          440.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027597\n\tand unit_concept_id =     8749\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027597 (BILIRUBIN.DIRECT [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8749 (MICROMOLE PER LITER), the number and percent of records that have a value higher than          440.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027597","UNIT_CONCEPT_ID":"    8749","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2953,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.687"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.881636 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027597\nunitConceptId =     8753\nplausibleValueHigh =          107.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027597\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          107.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027597\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027597 (BILIRUBIN.DIRECT [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than          107.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027597","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2954,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.688"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.566323 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027597\nunitConceptId =     8840\nplausibleValueHigh =          398.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027597\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          398.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027597\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027597 (BILIRUBIN.DIRECT [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          398.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027597","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2955,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.689"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.726641 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027651\nunitConceptId =     8647\nplausibleValueHigh =          350.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027651\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          350.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027651\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027651 (BASOPHILS [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value higher than          350.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027651","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2956,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.690"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819184 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027651\nunitConceptId =     8848\nplausibleValueHigh =            1.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027651\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            1.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027651\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027651 (BASOPHILS [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than            1.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027651","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2957,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.691"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.587737 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027651\nunitConceptId =     8961\nplausibleValueHigh =            1.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027651\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            1.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027651\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027651 (BASOPHILS [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value higher than            1.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027651","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2958,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.692"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.572442 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027801\nunitConceptId =     8876\nplausibleValueHigh =          150.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027801\n\t\tand m.unit_concept_id =     8876\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          150.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027801\n\tand unit_concept_id =     8876\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027801 (OXYGEN [PARTIAL PRESSURE] IN ARTERIAL BLOOD) and UNIT_CONCEPT_ID     8876 (MILLIMETER MERCURY COLUMN), the number and percent of records that have a value higher than          150.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027801","UNIT_CONCEPT_ID":"    8876","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2959,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.693"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.525489 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027114\nunitConceptId =     8753\nplausibleValueHigh =           15.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027114\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           15.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027114\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027114 (CHOLESTEROL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than           15.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027114","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2960,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.694"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.767171 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027970\nunitConceptId =     8636\nplausibleValueHigh =           40.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027970\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           40.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027970\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027970 (GLOBULIN [MASS/VOLUME] IN SERUM BY CALCULATION) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value higher than           40.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027970","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2961,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.695"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.418522 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027970\nunitConceptId =     8713\nplausibleValueHigh =            4.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027970\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            4.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027970\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027970 (GLOBULIN [MASS/VOLUME] IN SERUM BY CALCULATION) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than            4.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027970","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2962,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.696"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.750080 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028108\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028108\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028108\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028108 (SEGMENTED NEUTROPHILS/100 LEUKOCYTES IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028108","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2963,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.697"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.488096 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028286\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028286\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028286\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028286 (ALBUMIN [MASS/VOLUME] IN SERUM OR PLASMA BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028286","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2964,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.698"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.766227 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028286\nunitConceptId =     8636\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028286\n\t\tand m.unit_concept_id =     8636\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028286\n\tand unit_concept_id =     8636\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028286 (ALBUMIN [MASS/VOLUME] IN SERUM OR PLASMA BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8636 (GRAM PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028286","UNIT_CONCEPT_ID":"    8636","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2965,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.699"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.773128 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028286\nunitConceptId =     8713\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028286\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028286\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028286 (ALBUMIN [MASS/VOLUME] IN SERUM OR PLASMA BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028286","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2966,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.700"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.791059 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028286\nunitConceptId =     8751\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028286\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028286\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028286 (ALBUMIN [MASS/VOLUME] IN SERUM OR PLASMA BY ELECTROPHORESIS) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028286","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2967,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.701"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.886671 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3027939\nunitConceptId =     8523\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3027939\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3027939\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3027939 (CHOLESTEROL IN HDL/CHOLESTEROL IN LDL [MASS RATIO] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3027939","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2968,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.702"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.872846 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028288\nunitConceptId =     8840\nplausibleValueHigh =          400.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028288\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          400.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028288\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028288 (CHOLESTEROL IN LDL [MASS/VOLUME] IN SERUM OR PLASMA BY CALCULATION) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          400.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028288","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2969,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.703"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.958324 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028288\nunitConceptId =     8817\nplausibleValueHigh =          372.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028288\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          372.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028288\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028288 (CHOLESTEROL IN LDL [MASS/VOLUME] IN SERUM OR PLASMA BY CALCULATION) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value higher than          372.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028288","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2970,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.704"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.706701 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028288\nunitConceptId =     8736\nplausibleValueHigh =          596.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028288\n\t\tand m.unit_concept_id =     8736\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          596.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028288\n\tand unit_concept_id =     8736\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028288 (CHOLESTEROL IN LDL [MASS/VOLUME] IN SERUM OR PLASMA BY CALCULATION) and UNIT_CONCEPT_ID     8736 (NANOMOLE PER LITER), the number and percent of records that have a value higher than          596.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028288","UNIT_CONCEPT_ID":"    8736","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2971,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.705"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.952173 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028437\nunitConceptId =     8840\nplausibleValueHigh =          400.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028437\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          400.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028437\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028437 (CHOLESTEROL IN LDL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          400.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028437","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2972,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.706"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.687440 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028437\nunitConceptId =     8753\nplausibleValueHigh =           11.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028437\n\t\tand m.unit_concept_id =     8753\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           11.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028437\n\tand unit_concept_id =     8753\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028437 (CHOLESTEROL IN LDL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8753 (MILLIMOLE PER LITER), the number and percent of records that have a value higher than           11.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028437","UNIT_CONCEPT_ID":"    8753","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2973,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.707"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.802150 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028615\nunitConceptId =     8554\nplausibleValueHigh =            8.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028615\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            8.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028615\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028615 (EOSINOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than            8.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028615","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2974,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.708"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.487372 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028615\nunitConceptId =     8647\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028615\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028615\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028615 (EOSINOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028615","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2975,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.709"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.372424 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028615\nunitConceptId =     8816\nplausibleValueHigh =            1.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028615\n\t\tand m.unit_concept_id =     8816\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            1.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028615\n\tand unit_concept_id =     8816\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028615 (EOSINOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8816 (MILLION PER MILLILITER), the number and percent of records that have a value higher than            1.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028615","UNIT_CONCEPT_ID":"    8816","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2976,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.710"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.957579 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028615\nunitConceptId =     8848\nplausibleValueHigh =            1.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028615\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            1.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028615\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028615 (EOSINOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than            1.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028615","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2977,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.711"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819877 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028615\nunitConceptId =     8961\nplausibleValueHigh =            1.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028615\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            1.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028615\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028615 (EOSINOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value higher than            1.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028615","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2978,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.712"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.861676 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028615\nunitConceptId =     9254\nplausibleValueHigh =            1.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028615\n\t\tand m.unit_concept_id =     9254\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            1.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028615\n\tand unit_concept_id =     9254\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028615 (EOSINOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9254 (PER LITER), the number and percent of records that have a value higher than            1.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028615","UNIT_CONCEPT_ID":"    9254","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2979,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.713"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.784868 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028615\nunitConceptId =     9436\nplausibleValueHigh =            1.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028615\n\t\tand m.unit_concept_id =     9436\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            1.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028615\n\tand unit_concept_id =     9436\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028615 (EOSINOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9436 (THOUSAND PER MILLILITER), the number and percent of records that have a value higher than            1.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028615","UNIT_CONCEPT_ID":"    9436","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2980,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.714"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.734619 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028615\nunitConceptId =     9444\nplausibleValueHigh =            1.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028615\n\t\tand m.unit_concept_id =     9444\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            1.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028615\n\tand unit_concept_id =     9444\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028615 (EOSINOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9444 (BILLION PER LITER), the number and percent of records that have a value higher than            1.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028615","UNIT_CONCEPT_ID":"    9444","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2981,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.715"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.835611 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3028615\nunitConceptId = 44777599\nplausibleValueHigh =            1.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3028615\n\t\tand m.unit_concept_id = 44777599\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            1.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3028615\n\tand unit_concept_id = 44777599\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3028615 (EOSINOPHILS [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID 44777599 (GRAM OF TOTAL PROTEIN), the number and percent of records that have a value higher than            1.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3028615","UNIT_CONCEPT_ID":"44777599","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2982,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.716"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.773486 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3029187\nunitConceptId =     8817\nplausibleValueHigh =           50.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3029187\n\t\tand m.unit_concept_id =     8817\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           50.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3029187\n\tand unit_concept_id =     8817\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3029187 (NATRIURETIC PEPTIDE.B PROHORMONE N-TERMINAL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8817 (NANOGRAM PER DECILITER), the number and percent of records that have a value higher than           50.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3029187","UNIT_CONCEPT_ID":"    8817","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2983,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.717"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.434813 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3029187\nunitConceptId =     8842\nplausibleValueHigh =            5.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3029187\n\t\tand m.unit_concept_id =     8842\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            5.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3029187\n\tand unit_concept_id =     8842\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3029187 (NATRIURETIC PEPTIDE.B PROHORMONE N-TERMINAL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8842 (NANOGRAM PER MILLILITER), the number and percent of records that have a value higher than            5.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3029187","UNIT_CONCEPT_ID":"    8842","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2984,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.718"},{"NUM_VIOLATED_ROWS":72,"PCT_VIOLATED_ROWS":0.507,"NUM_DENOMINATOR_ROWS":142,"EXECUTION_TIME":"1.661295 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3029187\nunitConceptId =     8845\nplausibleValueHigh =         5000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3029187\n\t\tand m.unit_concept_id =     8845\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         5000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3029187\n\tand unit_concept_id =     8845\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3029187 (NATRIURETIC PEPTIDE.B PROHORMONE N-TERMINAL [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8845 (PICOGRAM PER MILLILITER), the number and percent of records that have a value higher than         5000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3029187","UNIT_CONCEPT_ID":"    8845","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2985,"FAILED":1,"THRESHOLD_VALUE":5,"_row":"19.719"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.766729 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3030366\nunitConceptId =     8751\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3030366\n\t\tand m.unit_concept_id =     8751\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3030366\n\tand unit_concept_id =     8751\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3030366 (CYSTATIN C [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8751 (MILLIGRAM PER LITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3030366","UNIT_CONCEPT_ID":"    8751","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2986,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.720"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.989623 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3030367\nunitConceptId =     8763\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3030367\n\t\tand m.unit_concept_id =     8763\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3030367\n\tand unit_concept_id =     8763\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3030367 (CYCLIC CITRULLINATED PEPTIDE IGG AB [UNITS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8763 (UNIT PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3030367","UNIT_CONCEPT_ID":"    8763","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2987,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.721"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.719397 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3032080\nunitConceptId =     8510\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3032080\n\t\tand m.unit_concept_id =     8510\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3032080\n\tand unit_concept_id =     8510\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3032080 (INR IN BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8510 (UNIT), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3032080","UNIT_CONCEPT_ID":"    8510","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2988,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.722"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.718907 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3032080\nunitConceptId =     8511\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3032080\n\t\tand m.unit_concept_id =     8511\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3032080\n\tand unit_concept_id =     8511\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3032080 (INR IN BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8511 (WEEK), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3032080","UNIT_CONCEPT_ID":"    8511","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2989,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.723"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.687825 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3032080\nunitConceptId =     8519\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3032080\n\t\tand m.unit_concept_id =     8519\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3032080\n\tand unit_concept_id =     8519\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3032080 (INR IN BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8519 (LITER), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3032080","UNIT_CONCEPT_ID":"    8519","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2990,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.724"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.057831 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3032080\nunitConceptId =     8523\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3032080\n\t\tand m.unit_concept_id =     8523\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3032080\n\tand unit_concept_id =     8523\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3032080 (INR IN BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8523 (RATIO), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3032080","UNIT_CONCEPT_ID":"    8523","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2991,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.725"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.490937 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3032080\nunitConceptId =     8528\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3032080\n\t\tand m.unit_concept_id =     8528\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3032080\n\tand unit_concept_id =     8528\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3032080 (INR IN BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     8528 (YEAR), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3032080","UNIT_CONCEPT_ID":"    8528","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2992,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.726"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.841536 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3032080\nunitConceptId =     9212\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3032080\n\t\tand m.unit_concept_id =     9212\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3032080\n\tand unit_concept_id =     9212\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3032080 (INR IN BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     9212 (SECOND), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3032080","UNIT_CONCEPT_ID":"    9212","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2993,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.727"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.848850 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3032080\nunitConceptId =     9580\nplausibleValueHigh =           30.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3032080\n\t\tand m.unit_concept_id =     9580\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           30.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3032080\n\tand unit_concept_id =     9580\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3032080 (INR IN BLOOD BY COAGULATION ASSAY) and UNIT_CONCEPT_ID     9580 (MONTH), the number and percent of records that have a value higher than           30.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3032080","UNIT_CONCEPT_ID":"    9580","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2994,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.728"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.904508 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3032567\nunitConceptId =     8985\nplausibleValueHigh =         4000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3032567\n\t\tand m.unit_concept_id =     8985\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         4000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3032567\n\tand unit_concept_id =     8985\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3032567 (HEPATITIS B VIRUS DNA [UNITS/VOLUME] (VIRAL LOAD) IN SERUM OR PLASMA BY NAA WITH PROBE DETECTION) and UNIT_CONCEPT_ID     8985 (INTERNATIONAL UNIT PER MILLILITER), the number and percent of records that have a value higher than         4000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3032567","UNIT_CONCEPT_ID":"    8985","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2995,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.729"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.658525 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3033526\nunitConceptId =     8840\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3033526\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3033526\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3033526 (URATE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3033526","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2996,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.730"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.120360 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3033526\nunitConceptId =     8909\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3033526\n\t\tand m.unit_concept_id =     8909\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3033526\n\tand unit_concept_id =     8909\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3033526 (URATE [MASS/VOLUME] IN URINE) and UNIT_CONCEPT_ID     8909 (MILLIGRAM PER 24 HOURS), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3033526","UNIT_CONCEPT_ID":"    8909","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2997,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.731"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.574310 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3033543\nunitConceptId =     9648\nplausibleValueHigh =           21.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3033543\n\t\tand m.unit_concept_id =     9648\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           21.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3033543\n\tand unit_concept_id =     9648\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3033543 (SPECIFIC GRAVITY OF URINE) and UNIT_CONCEPT_ID     9648 (UNIFIED ATOMIC MASS UNIT), the number and percent of records that have a value higher than           21.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3033543","UNIT_CONCEPT_ID":"    9648","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2998,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.732"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.089351 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3033575\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3033575\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3033575\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3033575 (MONOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3033575","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":2999,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.733"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.625238 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3033575\nunitConceptId =     8647\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3033575\n\t\tand m.unit_concept_id =     8647\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3033575\n\tand unit_concept_id =     8647\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3033575 (MONOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8647 (PER MICROLITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3033575","UNIT_CONCEPT_ID":"    8647","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":3000,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.734"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.767247 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3033575\nunitConceptId =     8816\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3033575\n\t\tand m.unit_concept_id =     8816\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3033575\n\tand unit_concept_id =     8816\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3033575 (MONOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8816 (MILLION PER MILLILITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3033575","UNIT_CONCEPT_ID":"    8816","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":3001,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.735"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.812240 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3033575\nunitConceptId =     8848\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3033575\n\t\tand m.unit_concept_id =     8848\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3033575\n\tand unit_concept_id =     8848\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3033575 (MONOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8848 (THOUSAND PER MICROLITER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3033575","UNIT_CONCEPT_ID":"    8848","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":3002,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.736"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.957665 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3033575\nunitConceptId =     8961\nplausibleValueHigh =         1000.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3033575\n\t\tand m.unit_concept_id =     8961\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >         1000.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3033575\n\tand unit_concept_id =     8961\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3033575 (MONOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     8961 (THOUSAND PER CUBIC MILLIMETER), the number and percent of records that have a value higher than         1000.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3033575","UNIT_CONCEPT_ID":"    8961","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":3003,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.737"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.803844 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3033575\nunitConceptId =     9436\nplausibleValueHigh =            1.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3033575\n\t\tand m.unit_concept_id =     9436\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >            1.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3033575\n\tand unit_concept_id =     9436\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3033575 (MONOCYTES [#/VOLUME] IN BLOOD BY AUTOMATED COUNT) and UNIT_CONCEPT_ID     9436 (THOUSAND PER MILLILITER), the number and percent of records that have a value higher than            1.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3033575","UNIT_CONCEPT_ID":"    9436","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":3004,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.738"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.820401 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3034107\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3034107\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3034107\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3034107 (MONOCYTES [#/VOLUME] IN BLOOD BY MANUAL COUNT) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3034107","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":3005,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.739"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.740799 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3034204\nunitConceptId =     8840\nplausibleValueHigh =          200.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3034204\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          200.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3034204\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3034204 (UREA [MASS/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          200.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3034204","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":3006,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.740"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.819800 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3034426\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3034426\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3034426\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3034426 (PROTHROMBIN TIME (PT)) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3034426","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":3007,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.741"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.772973 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3034426\nunitConceptId =     8555\nplausibleValueHigh =          170.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3034426\n\t\tand m.unit_concept_id =     8555\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          170.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3034426\n\tand unit_concept_id =     8555\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3034426 (PROTHROMBIN TIME (PT)) and UNIT_CONCEPT_ID     8555 (SECOND), the number and percent of records that have a value higher than          170.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3034426","UNIT_CONCEPT_ID":"    8555","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":3008,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.742"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.751342 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3034639\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3034639\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3034639\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3034639 (HEMOGLOBIN A1C [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3034639","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":3009,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.743"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.867174 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3034639\nunitConceptId =     8713\nplausibleValueHigh =           20.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3034639\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           20.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3034639\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3034639 (HEMOGLOBIN A1C [MASS/VOLUME] IN BLOOD) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than           20.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3034639","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":3010,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.744"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.804060 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3034739\nunitConceptId =     8605\nplausibleValueHigh =          420.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3034739\n\t\tand m.unit_concept_id =     8605\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          420.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3034739\n\tand unit_concept_id =     8605\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3034739 (OSMOLALITY OF SERUM OR PLASMA BY CALCULATION) and UNIT_CONCEPT_ID     8605 (MILLIOSMOLE), the number and percent of records that have a value higher than          420.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3034739","UNIT_CONCEPT_ID":"    8605","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":3011,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.745"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.904017 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3034739\nunitConceptId =     8862\nplausibleValueHigh =          420.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3034739\n\t\tand m.unit_concept_id =     8862\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          420.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3034739\n\tand unit_concept_id =     8862\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3034739 (OSMOLALITY OF SERUM OR PLASMA BY CALCULATION) and UNIT_CONCEPT_ID     8862 (MILLIOSMOLE PER KILOGRAM), the number and percent of records that have a value higher than          420.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3034739","UNIT_CONCEPT_ID":"    8862","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":3012,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.746"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.689302 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3034739\nunitConceptId =     9577\nplausibleValueHigh =          420.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3034739\n\t\tand m.unit_concept_id =     9577\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          420.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3034739\n\tand unit_concept_id =     9577\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3034739 (OSMOLALITY OF SERUM OR PLASMA BY CALCULATION) and UNIT_CONCEPT_ID     9577 (MILLIMOLE PER KILOGRAM), the number and percent of records that have a value higher than          420.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3034739","UNIT_CONCEPT_ID":"    9577","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":3013,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.747"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.158049 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3035941\nunitConceptId =     8554\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3035941\n\t\tand m.unit_concept_id =     8554\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3035941\n\tand unit_concept_id =     8554\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3035941 (MCH [ENTITIC MASS]) and UNIT_CONCEPT_ID     8554 (PERCENT), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3035941","UNIT_CONCEPT_ID":"    8554","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":3014,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.748"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.503726 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3035941\nunitConceptId =     8564\nplausibleValueHigh =          100.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3035941\n\t\tand m.unit_concept_id =     8564\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          100.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3035941\n\tand unit_concept_id =     8564\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3035941 (MCH [ENTITIC MASS]) and UNIT_CONCEPT_ID     8564 (PICOGRAM), the number and percent of records that have a value higher than          100.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3035941","UNIT_CONCEPT_ID":"    8564","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":3015,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.749"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.756821 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3035995\nunitConceptId =     8645\nplausibleValueHigh =          731.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3035995\n\t\tand m.unit_concept_id =     8645\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          731.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3035995\n\tand unit_concept_id =     8645\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3035995 (ALKALINE PHOSPHATASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8645 (UNIT PER LITER), the number and percent of records that have a value higher than          731.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3035995","UNIT_CONCEPT_ID":"    8645","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":3016,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.750"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.750227 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3035995\nunitConceptId =     8713\nplausibleValueHigh =           37.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3035995\n\t\tand m.unit_concept_id =     8713\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >           37.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3035995\n\tand unit_concept_id =     8713\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3035995 (ALKALINE PHOSPHATASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8713 (GRAM PER DECILITER), the number and percent of records that have a value higher than           37.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3035995","UNIT_CONCEPT_ID":"    8713","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":3017,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.751"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"2.020158 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3035995\nunitConceptId =     8840\nplausibleValueHigh =          236.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3035995\n\t\tand m.unit_concept_id =     8840\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          236.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3035995\n\tand unit_concept_id =     8840\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3035995 (ALKALINE PHOSPHATASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8840 (MILLIGRAM PER DECILITER), the number and percent of records that have a value higher than          236.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3035995","UNIT_CONCEPT_ID":"    8840","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":3018,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.752"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":0,"EXECUTION_TIME":"1.758087 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3035995\nunitConceptId =     8923\nplausibleValueHigh =          731.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3035995\n\t\tand m.unit_concept_id =     8923\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          731.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3035995\n\tand unit_concept_id =     8923\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK_LEVEL":"CONCEPT","CHECK_DESCRIPTION":"For the combination of CONCEPT_ID  3035995 (ALKALINE PHOSPHATASE [ENZYMATIC ACTIVITY/VOLUME] IN SERUM OR PLASMA) and UNIT_CONCEPT_ID     8923 (INTERNATIONAL UNIT PER LITER), the number and percent of records that have a value higher than          731.00.","CDM_TABLE_NAME":"MEASUREMENT","CDM_FIELD_NAME":"MEASUREMENT_CONCEPT_ID","CONCEPT_ID":" 3035995","UNIT_CONCEPT_ID":"    8923","SQL_FILE":"concept_plausible_value_high.sql","CATEGORY":"Plausibility","SUBCATEGORY":"Atemporal","CONTEXT":"Verification","checkId":3019,"FAILED":0,"THRESHOLD_VALUE":5,"_row":"19.753"},{"NUM_VIOLATED_ROWS":0,"PCT_VIOLATED_ROWS":0,"NUM_DENOMINATOR_ROWS":71,"EXECUTION_TIME":"1.434385 secs","QUERY_TEXT":"\n/*********\nCONCEPT LEVEL check:\nPLAUSIBLE_VALUE_HIGH - find any MEASUREMENT records that have VALUE_AS_NUMBER with non-null value > plausible high value\n\nParameters used in this template:\ncdmDatabaseSchema = mimiciv_demo_current_cdm_531\ncdmTableName = MEASUREMENT\ncdmFieldName = MEASUREMENT_CONCEPT_ID\nconceptId =  3036277\nunitConceptId =     8582\nplausibleValueHigh =          250.00\n\n**********/\n\n\nselect num_violated_rows, case when denominator.num_rows = 0 then 0 else 1.0*num_violated_rows/denominator.num_rows end  as pct_violated_rows,\n  denominator.num_rows as num_denominator_rows\nfrom\n(\n\tselect COUNT(*) as num_violated_rows\n\tfrom\n\t(\n\t\tselect m.* \n\t\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\t\n\t\twhere m.measurement_concept_id =  3036277\n\t\tand m.unit_concept_id =     8582\n\t\tand m.value_as_number is not null\n\t\tand m.value_as_number >          250.00\n\t) violated_rows\n) violated_row_count,\n( \n\tselect COUNT(*) as num_rows\n\tfrom mimiciv_demo_current_cdm_531.measurement m\n\t\n\twhere m.measurement_concept_id =  3036277\n\tand unit_concept_id =     8582\n\tand value_as_number is not null\n) denominator\n;","CHECK_NAME":"plausibleValueHigh","CHECK