"description": "Admission ID",
"type": "string"
},
+ "srfid": {
+ "description": "SRF ID",
+ "type": "string"
+ },
"name": {
"description": "Name",
"type": "string"
--- /dev/null
+{
+ "$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"]
+}
--- /dev/null
+{
+ "$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"]
+}
--- /dev/null
+{
+ "$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"]
+}
--- /dev/null
+{
+ "$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"]
+}
--- /dev/null
+{
+ "$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"]
+}
--- /dev/null
+{
+ "$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"]
+}
--- /dev/null
+{
+ "$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"]
+}
--- /dev/null
+{
+ "$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"]
+}
--- /dev/null
+{
+ "$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"]
+}
--- /dev/null
+{
+ "$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"]
+}
--- /dev/null
+{
+ "$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"]
+}
--- /dev/null
+{
+ "$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"]
+}
--- /dev/null
+{
+ "$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"]
+}
--- /dev/null
+{
+ "$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"]
+}
--- /dev/null
+{
+ "$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"]
+}