]> Softwares of Agnibho - simpleipd.git/commitdiff
New forms
authorAgnibho Mondal <mondal@agnibho.com>
Sat, 15 May 2021 03:19:00 +0000 (08:49 +0530)
committerAgnibho Mondal <mondal@agnibho.com>
Sat, 15 May 2021 03:19:00 +0000 (08:49 +0530)
16 files changed:
forms/admission.schema.json
forms/report-abg.schema.json [new file with mode: 0644]
forms/report-blood-cs.schema.json [new file with mode: 0644]
forms/report-crp.schema.json [new file with mode: 0644]
forms/report-ddimer.schema.json [new file with mode: 0644]
forms/report-fluid.schema.json [new file with mode: 0644]
forms/report-glycemic.schema.json [new file with mode: 0644]
forms/report-ldh.schema.json [new file with mode: 0644]
forms/report-lipid.schema.json [new file with mode: 0644]
forms/report-other.schema.json [new file with mode: 0644]
forms/report-sputum-cs.schema.json [new file with mode: 0644]
forms/report-sputum-me.schema.json [new file with mode: 0644]
forms/report-stool-ova.schema.json [new file with mode: 0644]
forms/report-stool-re.schema.json [new file with mode: 0644]
forms/report-urine-cs.schema.json [new file with mode: 0644]
forms/report-urine-re.schema.json [new file with mode: 0644]

index f620c1c00ace9253dc608fa9885acfbad470eae7..a87274b5047e062c2c259a059f67dd26780f92af 100644 (file)
@@ -9,6 +9,10 @@
             "description": "Admission ID",
             "type": "string"
         },
+        "srfid": {
+            "description": "SRF ID",
+            "type": "string"
+        },
         "name": {
             "description": "Name",
             "type": "string"
diff --git a/forms/report-abg.schema.json b/forms/report-abg.schema.json
new file mode 100644 (file)
index 0000000..0ed6f56
--- /dev/null
@@ -0,0 +1,44 @@
+{
+    "$schema": "http://json-schema.org/draft/2020-12/schema",
+    "title": "ABG",
+    "description": "ABG",
+    "type": "object",
+
+    "properties": {
+        "date": {
+            "description": "Date",
+            "type": "string",
+            "format": "date"
+        },
+        "time": {
+            "description": "Time",
+            "type": "string",
+            "format": "time"
+        },
+        "ph": {
+            "description": "pH",
+            "type": "number"
+        },
+        "pao2": {
+            "description": "PaO2",
+            "type": "number"
+        },
+        "paco2": {
+            "description": "PaCO2",
+            "type": "number"
+        },
+        "hco3": {
+            "description": "HCO3",
+            "type": "number"
+        },
+        "na": {
+            "description": "Na",
+            "type": "number"
+        },
+        "k": {
+            "description": "K",
+            "type": "number"
+        }
+    },
+    "required": ["date"]
+}
diff --git a/forms/report-blood-cs.schema.json b/forms/report-blood-cs.schema.json
new file mode 100644 (file)
index 0000000..51dfa1d
--- /dev/null
@@ -0,0 +1,24 @@
+{
+    "$schema": "http://json-schema.org/draft/2020-12/schema",
+    "title": "Blood CS",
+    "description": "Blood CS",
+    "type": "object",
+
+    "properties": {
+        "date": {
+            "description": "Date",
+            "type": "string",
+            "format": "date"
+        },
+        "time": {
+            "description": "Time",
+            "type": "string",
+            "format": "time"
+        },
+        "organism": {
+            "description": "Organism",
+            "type": "string"
+        }
+    },
+    "required": ["date"]
+}
diff --git a/forms/report-crp.schema.json b/forms/report-crp.schema.json
new file mode 100644 (file)
index 0000000..08ce181
--- /dev/null
@@ -0,0 +1,25 @@
+{
+    "$schema": "http://json-schema.org/draft/2020-12/schema",
+    "title": "CRP",
+    "description": "CRP",
+    "type": "object",
+
+    "properties": {
+        "date": {
+            "description": "Date",
+            "type": "string",
+            "format": "date"
+        },
+        "time": {
+            "description": "Time",
+            "type": "string",
+            "format": "time"
+        },
+
+        "ldh": {
+            "description": "CRP",
+            "type": "number"
+        }
+    },
+    "required": ["date"]
+}
diff --git a/forms/report-ddimer.schema.json b/forms/report-ddimer.schema.json
new file mode 100644 (file)
index 0000000..f638073
--- /dev/null
@@ -0,0 +1,25 @@
+{
+    "$schema": "http://json-schema.org/draft/2020-12/schema",
+    "title": "D-Dimer",
+    "description": "D-Dimer",
+    "type": "object",
+
+    "properties": {
+        "date": {
+            "description": "Date",
+            "type": "string",
+            "format": "date"
+        },
+        "time": {
+            "description": "Time",
+            "type": "string",
+            "format": "time"
+        },
+
+        "ddimer": {
+            "description": "D-Dimer",
+            "type": "number"
+        }
+    },
+    "required": ["date"]
+}
diff --git a/forms/report-fluid.schema.json b/forms/report-fluid.schema.json
new file mode 100644 (file)
index 0000000..62bd4dc
--- /dev/null
@@ -0,0 +1,65 @@
+{
+    "$schema": "http://json-schema.org/draft/2020-12/schema",
+    "title": "Fluid Study",
+    "description": "Fluid Study",
+    "type": "object",
+
+    "properties": {
+        "date": {
+            "description": "Date",
+            "type": "string",
+            "format": "date"
+        },
+        "time": {
+            "description": "Time",
+            "type": "string",
+            "format": "time"
+        },
+        "fluid": {
+            "description": "Fluid",
+            "type": "string",
+            "enum": ["pleural fluid", "ascitic fluid", "csf", "other"]
+        },
+        "cellCount": {
+            "description": "Cell Count",
+            "type": "integer"
+        },
+        "cellType": {
+            "description": "Cell Type",
+            "type": "string"
+        },
+        "protein": {
+            "description": "Protein",
+            "type": "integer"
+        },
+        "sugar": {
+            "description": "Sugar",
+            "type": "integer"
+        },
+        "ldh": {
+            "description": "LDH",
+            "type": "integer"
+        },
+        "gram": {
+            "description": "Gram Stain",
+            "type": "string"
+        },
+        "afb": {
+            "description": "AFB Stain",
+            "type": "string"
+        },
+        "fungal": {
+            "description": "Fungal Stain",
+            "type": "string"
+        },
+        "cs": {
+            "description": "Culture/Sensitivity",
+            "type": "string"
+        },
+        "cbnaat": {
+            "description": "CBNAAT",
+            "type": "string"
+        }
+    },
+    "required": ["date"]
+}
diff --git a/forms/report-glycemic.schema.json b/forms/report-glycemic.schema.json
new file mode 100644 (file)
index 0000000..0875fb0
--- /dev/null
@@ -0,0 +1,33 @@
+{
+    "$schema": "http://json-schema.org/draft/2020-12/schema",
+    "title": "Glycemic Status",
+    "description": "Glycemic Status",
+    "type": "object",
+
+    "properties": {
+        "date": {
+            "description": "Date",
+            "type": "string",
+            "format": "date"
+        },
+        "time": {
+            "description": "Time",
+            "type": "string",
+            "format": "time"
+        },
+
+        "fbs": {
+            "description": "FBS",
+            "type": "number"
+        },
+        "ppbs": {
+            "description": "PPBS",
+            "type": "number"
+        },
+        "hba1c": {
+            "description": "HbA1C",
+            "type": "number"
+        }
+    },
+    "required": ["date"]
+}
diff --git a/forms/report-ldh.schema.json b/forms/report-ldh.schema.json
new file mode 100644 (file)
index 0000000..cce1e38
--- /dev/null
@@ -0,0 +1,25 @@
+{
+    "$schema": "http://json-schema.org/draft/2020-12/schema",
+    "title": "LDH",
+    "description": "LDH",
+    "type": "object",
+
+    "properties": {
+        "date": {
+            "description": "Date",
+            "type": "string",
+            "format": "date"
+        },
+        "time": {
+            "description": "Time",
+            "type": "string",
+            "format": "time"
+        },
+
+        "ldh": {
+            "description": "LDH",
+            "type": "number"
+        }
+    },
+    "required": ["date"]
+}
diff --git a/forms/report-lipid.schema.json b/forms/report-lipid.schema.json
new file mode 100644 (file)
index 0000000..a203b15
--- /dev/null
@@ -0,0 +1,37 @@
+{
+    "$schema": "http://json-schema.org/draft/2020-12/schema",
+    "title": "Lipid Profile",
+    "description": "Lipid Profile",
+    "type": "object",
+
+    "properties": {
+        "date": {
+            "description": "Date",
+            "type": "string",
+            "format": "date"
+        },
+        "time": {
+            "description": "Time",
+            "type": "string",
+            "format": "time"
+        },
+
+        "ldl": {
+            "description": "LDL",
+            "type": "number"
+        },
+        "hdl": {
+            "description": "HDL",
+            "type": "number"
+        },
+        "tgl": {
+            "description": "Triglyceride",
+            "type": "number"
+        },
+        "chol": {
+            "description": "Cholesterol",
+            "type": "number"
+        }
+    },
+    "required": ["date"]
+}
diff --git a/forms/report-other.schema.json b/forms/report-other.schema.json
new file mode 100644 (file)
index 0000000..ba613ec
--- /dev/null
@@ -0,0 +1,24 @@
+{
+    "$schema": "http://json-schema.org/draft/2020-12/schema",
+    "title": "Other Reports",
+    "description": "Other Reports",
+    "type": "object",
+
+    "properties": {
+        "date": {
+            "description": "Date",
+            "type": "string",
+            "format": "date"
+        },
+        "time": {
+            "description": "Time",
+            "type": "string",
+            "format": "time"
+        },
+        "report": {
+            "description": "Report",
+            "type": "string"
+        }
+    },
+    "required": ["date"]
+}
diff --git a/forms/report-sputum-cs.schema.json b/forms/report-sputum-cs.schema.json
new file mode 100644 (file)
index 0000000..8ebf011
--- /dev/null
@@ -0,0 +1,24 @@
+{
+    "$schema": "http://json-schema.org/draft/2020-12/schema",
+    "title": "Sputum CS",
+    "description": "Sputum CS",
+    "type": "object",
+
+    "properties": {
+        "date": {
+            "description": "Date",
+            "type": "string",
+            "format": "date"
+        },
+        "time": {
+            "description": "Time",
+            "type": "string",
+            "format": "time"
+        },
+        "organism": {
+            "description": "Organism",
+            "type": "string"
+        }
+    },
+    "required": ["date"]
+}
diff --git a/forms/report-sputum-me.schema.json b/forms/report-sputum-me.schema.json
new file mode 100644 (file)
index 0000000..596507f
--- /dev/null
@@ -0,0 +1,28 @@
+{
+    "$schema": "http://json-schema.org/draft/2020-12/schema",
+    "title": "Sputum ME",
+    "description": "Sputum ME",
+    "type": "object",
+
+    "properties": {
+        "date": {
+            "description": "Date",
+            "type": "string",
+            "format": "date"
+        },
+        "time": {
+            "description": "Time",
+            "type": "string",
+            "format": "time"
+        },
+        "description": {
+            "description": "Description",
+            "type": "string"
+        },
+        "organism": {
+            "description": "Organism",
+            "type": "string"
+        }
+    },
+    "required": ["date"]
+}
diff --git a/forms/report-stool-ova.schema.json b/forms/report-stool-ova.schema.json
new file mode 100644 (file)
index 0000000..3551731
--- /dev/null
@@ -0,0 +1,28 @@
+{
+    "$schema": "http://json-schema.org/draft/2020-12/schema",
+    "title": "Stool for Ova",
+    "description": "Stool for Ova",
+    "type": "object",
+
+    "properties": {
+        "date": {
+            "description": "Date",
+            "type": "string",
+            "format": "date"
+        },
+        "time": {
+            "description": "Time",
+            "type": "string",
+            "format": "time"
+        },
+        "description": {
+            "description": "Description",
+            "type": "string"
+        },
+        "ova": {
+            "description": "Ova",
+            "type": "string"
+        }
+    },
+    "required": ["date"]
+}
diff --git a/forms/report-stool-re.schema.json b/forms/report-stool-re.schema.json
new file mode 100644 (file)
index 0000000..ab7ac56
--- /dev/null
@@ -0,0 +1,32 @@
+{
+    "$schema": "http://json-schema.org/draft/2020-12/schema",
+    "title": "Stool RE",
+    "description": "Stool RE",
+    "type": "object",
+
+    "properties": {
+        "date": {
+            "description": "Date",
+            "type": "string",
+            "format": "date"
+        },
+        "time": {
+            "description": "Time",
+            "type": "string",
+            "format": "time"
+        },
+        "description": {
+            "description": "Description",
+            "type": "string"
+        },
+        "obt": {
+            "description": "OBT",
+            "type": "string"
+        },
+        "opc": {
+            "description": "Ova Parasite Cyst",
+            "type": "string"
+        }
+    },
+    "required": ["date"]
+}
diff --git a/forms/report-urine-cs.schema.json b/forms/report-urine-cs.schema.json
new file mode 100644 (file)
index 0000000..93d8d5a
--- /dev/null
@@ -0,0 +1,24 @@
+{
+    "$schema": "http://json-schema.org/draft/2020-12/schema",
+    "title": "Urine CS",
+    "description": "Urine CS",
+    "type": "object",
+
+    "properties": {
+        "date": {
+            "description": "Date",
+            "type": "string",
+            "format": "date"
+        },
+        "time": {
+            "description": "Time",
+            "type": "string",
+            "format": "time"
+        },
+        "organism": {
+            "description": "Organism",
+            "type": "string"
+        }
+    },
+    "required": ["date"]
+}
diff --git a/forms/report-urine-re.schema.json b/forms/report-urine-re.schema.json
new file mode 100644 (file)
index 0000000..ac114f2
--- /dev/null
@@ -0,0 +1,40 @@
+{
+    "$schema": "http://json-schema.org/draft/2020-12/schema",
+    "title": "Urine RE",
+    "description": "Urine RE",
+    "type": "object",
+
+    "properties": {
+        "date": {
+            "description": "Date",
+            "type": "string",
+            "format": "date"
+        },
+        "time": {
+            "description": "Time",
+            "type": "string",
+            "format": "time"
+        },
+        "description": {
+            "description": "Description",
+            "type": "string"
+        },
+        "albumin": {
+            "description": "Albumin",
+            "type": "string"
+        },
+        "ketone": {
+            "description": "Ketone Body",
+            "type": "string"
+        },
+        "rbc": {
+            "description": "RBC cells",
+            "type": "string"
+        },
+        "pus": {
+            "description": "Pus cells",
+            "type": "string"
+        }
+    },
+    "required": ["date"]
+}