From: Agnibho Mondal Date: Mon, 7 Jun 2021 21:28:08 +0000 (+0530) Subject: Corrected reference ranges X-Git-Url: https://code.agnibho.com/repo?a=commitdiff_plain;h=18c005dca953b3b2e7bc7ee5c0abc1d9426c48e9;p=simpleipd.git Corrected reference ranges --- diff --git a/www/forms/report-crp.schema.json b/www/forms/report-crp.schema.json index f4f1ba0..d1e975d 100644 --- a/www/forms/report-crp.schema.json +++ b/www/forms/report-crp.schema.json @@ -22,7 +22,7 @@ "ldh": { "description": "CRP (mg/L)", "type": "number", - "range": [null,5] + "range": [null,6] } }, "required": ["date"] diff --git a/www/forms/report-elctrolyte.schema.json b/www/forms/report-elctrolyte.schema.json new file mode 100644 index 0000000..4e2af12 --- /dev/null +++ b/www/forms/report-elctrolyte.schema.json @@ -0,0 +1,44 @@ +{ + "$schema": "http://json-schema.org/draft/2020-12/schema", + "title": "electrolyte", + "description": "Electrolyte", + "type": "object", + + "properties": { + "date": { + "description": "Date", + "type": "string", + "format": "date" + }, + "time": { + "description": "Time", + "type": "string", + "format": "time" + }, + "sample": { + "description": "Sample", + "type": "string" + }, + "na": { + "description": "Sodium (mEq/L)", + "type": "number", + "range": [135,145] + }, + "k": { + "description": "Potassium (mEq/L)", + "type": "number", + "range": [3.5,5] + }, + "cl": { + "description": "Chloride (mEq/L)", + "type": "number", + "range": [95,105] + }, + "ca": { + "description": "Calcium (mg/dL)", + "type": "number", + "range": [8.5,10.2] + } + }, + "required": ["date"] +} diff --git a/www/forms/report-glycemic.schema.json b/www/forms/report-glycemic.schema.json index 245468c..ec86bde 100644 --- a/www/forms/report-glycemic.schema.json +++ b/www/forms/report-glycemic.schema.json @@ -22,12 +22,17 @@ "fbs": { "description": "FBS (mg/dL)", "type": "number", - "range": [79,110] + "range": [70,100] }, "ppbs": { "description": "PPBS (mg/dL)", "type": "number", - "range": [null,160] + "range": [null,140] + }, + "rbs": { + "description": "RBS (mg/dL)", + "type": "number", + "range": [null,200] }, "hba1c": { "description": "HbA1C", diff --git a/www/forms/report-ldh.schema.json b/www/forms/report-ldh.schema.json index 68a6eae..c295cf4 100644 --- a/www/forms/report-ldh.schema.json +++ b/www/forms/report-ldh.schema.json @@ -22,7 +22,7 @@ "ldh": { "description": "LDH (U/L)", "type": "number", - "range": [null,150] + "range": [225,450] } }, "required": ["date"] diff --git a/www/forms/report-lft.schema.json b/www/forms/report-lft.schema.json index 2a3d64f..79bcb47 100644 --- a/www/forms/report-lft.schema.json +++ b/www/forms/report-lft.schema.json @@ -22,16 +22,17 @@ "tbr": { "description": "Total Bilirubin (mg/dL)", "type": "number", - "range": [null,1] + "range": [0.3,1.2] }, "cbr": { "description": "Conjugated Bilirubin (mg/dL)", - "type": "number" + "type": "number", + "range": [0,0.25] }, "alb": { "description": "Albumin (g/dL)", "type": "number", - "range": [3.5,null] + "range": [3.5,5.2] }, "glob": { "description": "Globulin (g/dL)", @@ -40,16 +41,20 @@ "sgot": { "description": "SGOT (IU/L)", "type": "number", - "range": [null,35] + "range": [null,40] }, "sgpt": { "description": "SGPT (IU/L)", "type": "number", - "range": [null,35] + "range": [null,45] }, "alp": { "description": "Alkaline Phosphatase (IU/L)", "type": "number" + }, + "ggt": { + "description": "GGT (IU/L)", + "type": "number" } }, "required": ["date"] diff --git a/www/forms/report-lipid.schema.json b/www/forms/report-lipid.schema.json index 93052f4..31535f9 100644 --- a/www/forms/report-lipid.schema.json +++ b/www/forms/report-lipid.schema.json @@ -22,22 +22,22 @@ "ldl": { "description": "LDL (mg/dL)", "type": "number", - "range": [null,130] + "range": [null,100] }, "hdl": { "description": "HDL (mg/dL)", "type": "number", - "range": [40,null] + "range": [35,80] }, "tgl": { "description": "Triglyceride (mg/dL)", "type": "number", - "range": [null,150] + "range": [null,160] }, "chol": { "description": "Cholesterol (mg/dL)", "type": "number", - "range": [null,130] + "range": [null,200] } }, "required": ["date"] diff --git a/www/forms/report-pancreatitis.schema.json b/www/forms/report-pancreatitis.schema.json new file mode 100644 index 0000000..65942fc --- /dev/null +++ b/www/forms/report-pancreatitis.schema.json @@ -0,0 +1,34 @@ +{ + "$schema": "http://json-schema.org/draft/2020-12/schema", + "title": "pancreatitis", + "description": "Pancreatitis Markers", + "type": "object", + + "properties": { + "date": { + "description": "Date", + "type": "string", + "format": "date" + }, + "time": { + "description": "Time", + "type": "string", + "format": "time" + }, + "sample": { + "description": "Sample", + "type": "string" + }, + "amylase": { + "description": "Amylase (IU/L)", + "type": "number", + "range": [23,85] + }, + "lipase": { + "description": "Lipase (IU/L)", + "type": "number", + "range": [0,160] + } + }, + "required": ["date"] +} diff --git a/www/forms/report-rft.schema.json b/www/forms/report-rft.schema.json index b7ed843..8c2e35b 100644 --- a/www/forms/report-rft.schema.json +++ b/www/forms/report-rft.schema.json @@ -22,7 +22,7 @@ "urea": { "description": "Urea (mg/dL)", "type": "number", - "range": [null,40] + "range": [10,40] }, "creat": { "description": "Creatinine (mg/dL)", @@ -32,7 +32,7 @@ "na": { "description": "Sodium (mEq/L)", "type": "number", - "range": [134,146] + "range": [135,145] }, "k": { "description": "Potassium (mEq/L)", @@ -42,7 +42,7 @@ "cl": { "description": "Chloride (mEq/L)", "type": "number", - "range": [98,107] + "range": [95,105] } }, "required": ["date"] diff --git a/www/forms/report-thyroid.schema.json b/www/forms/report-thyroid.schema.json new file mode 100644 index 0000000..4a3bd29 --- /dev/null +++ b/www/forms/report-thyroid.schema.json @@ -0,0 +1,44 @@ +{ + "$schema": "http://json-schema.org/draft/2020-12/schema", + "title": "thyroid", + "description": "Thyroid Profile", + "type": "object", + + "properties": { + "date": { + "description": "Date", + "type": "string", + "format": "date" + }, + "time": { + "description": "Time", + "type": "string", + "format": "time" + }, + "sample": { + "description": "Sample", + "type": "string" + }, + "tsh": { + "description": "TSH (µIU/ml)", + "type": "number", + "range": [0.39,6.16] + }, + "ft4": { + "description": "FT4 (ng/dL)", + "type": "number", + "range": [0.9,1.7] + }, + "t3": { + "description": "T3 (ng/ml)", + "type": "number", + "range": [0.52,1.85] + }, + "t4": { + "description": "T4 (µg/dl)", + "type": "number", + "range": [4.4,11.6] + } + }, + "required": ["date"] +} diff --git a/www/forms/report-ua.schema.json b/www/forms/report-ua.schema.json new file mode 100644 index 0000000..a81252c --- /dev/null +++ b/www/forms/report-ua.schema.json @@ -0,0 +1,28 @@ +{ + "$schema": "http://json-schema.org/draft/2020-12/schema", + "title": "uric_acid", + "description": "Uric Acid", + "type": "object", + + "properties": { + "date": { + "description": "Date", + "type": "string", + "format": "date" + }, + "time": { + "description": "Time", + "type": "string", + "format": "time" + }, + "sample": { + "description": "Sample", + "type": "string" + }, + "ua": { + "description": "Uric Acid (U/L)", + "type": "number" + } + }, + "required": ["date"] +}