From f0728811990d294eacc685f10ffa77cde536e7dc Mon Sep 17 00:00:00 2001 From: Agnibho Mondal Date: Sat, 29 May 2021 12:48:50 +0530 Subject: [PATCH] New form --- www/autocomplete/investigation.json | 1 + www/forms/report-coagulation.schema.json | 40 ++++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 www/forms/report-coagulation.schema.json diff --git a/www/autocomplete/investigation.json b/www/autocomplete/investigation.json index 7cdaf37..17b514e 100644 --- a/www/autocomplete/investigation.json +++ b/www/autocomplete/investigation.json @@ -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 index 0000000..3764a93 --- /dev/null +++ b/www/forms/report-coagulation.schema.json @@ -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"] +} -- 2.39.5