]> Softwares of Agnibho - simpleipd.git/commitdiff
New form
authorAgnibho Mondal <mondal@agnibho.com>
Sat, 29 May 2021 07:18:50 +0000 (12:48 +0530)
committerAgnibho Mondal <mondal@agnibho.com>
Sat, 29 May 2021 07:18:50 +0000 (12:48 +0530)
www/autocomplete/investigation.json
www/forms/report-coagulation.schema.json [new file with mode: 0644]

index 7cdaf37a5a986b92b0fad9f9f6a2ea432bb75806..17b514e090a4e155dc9a664a11ba46358cbb6e30 100644 (file)
@@ -5,6 +5,7 @@
     ],
     "rooms": [
         "labmed",
+        "hematology",
         "bacteriology",
         "virology",
         "protozoology",
diff --git a/www/forms/report-coagulation.schema.json b/www/forms/report-coagulation.schema.json
new file mode 100644 (file)
index 0000000..3764a93
--- /dev/null
@@ -0,0 +1,40 @@
+{
+    "$schema": "http://json-schema.org/draft/2020-12/schema",
+    "title": "coagulation",
+    "description": "Coagulation Profile",
+    "type": "object",
+
+    "properties": {
+        "date": {
+            "description": "Date",
+            "type": "string",
+            "format": "date"
+        },
+        "time": {
+            "description": "Time",
+            "type": "string",
+            "format": "time"
+        },
+        "sample": {
+            "description": "Sample",
+            "type": "string"
+        },
+        "pt": {
+            "description": "Patient PT",
+            "type": "number"
+        },
+        "pt_ref": {
+            "description": "Control PT",
+            "type": "number"
+        },
+        "inr": {
+            "description": "INR",
+            "type": "number"
+        },
+        "aptt": {
+            "description": "APTT",
+            "type": "number"
+        }
+    },
+    "required": ["date"]
+}