From ed8833451c18e4df6f98bfa44bffda0cea201af3 Mon Sep 17 00:00:00 2001 From: Agnibho Mondal Date: Mon, 24 May 2021 18:21:04 +0530 Subject: [PATCH] New forms --- www/autocomplete/investigation.json | 1 + ...c.schema.json => report-fluid.schema.json} | 4 +++ www/forms/report-vdrl.schema.json | 29 +++++++++++++++++++ 3 files changed, 34 insertions(+) rename www/forms/{report-fluid-ascitic.schema.json => report-fluid.schema.json} (94%) create mode 100644 www/forms/report-vdrl.schema.json diff --git a/www/autocomplete/investigation.json b/www/autocomplete/investigation.json index f26bf5a..1aa6a91 100644 --- a/www/autocomplete/investigation.json +++ b/www/autocomplete/investigation.json @@ -13,6 +13,7 @@ "parasitology", "pathology", "ictc", + "suraksha_clinic", "ccu_lab", "other_govt_hospital", "outside_lab" diff --git a/www/forms/report-fluid-ascitic.schema.json b/www/forms/report-fluid.schema.json similarity index 94% rename from www/forms/report-fluid-ascitic.schema.json rename to www/forms/report-fluid.schema.json index 26daa33..d296c22 100644 --- a/www/forms/report-fluid-ascitic.schema.json +++ b/www/forms/report-fluid.schema.json @@ -35,6 +35,10 @@ "description": "Sugar", "type": "integer" }, + "ada": { + "description": "ADA", + "type": "integer" + }, "ldh": { "description": "LDH", "type": "integer" diff --git a/www/forms/report-vdrl.schema.json b/www/forms/report-vdrl.schema.json new file mode 100644 index 0000000..ea057ca --- /dev/null +++ b/www/forms/report-vdrl.schema.json @@ -0,0 +1,29 @@ +{ + "$schema": "http://json-schema.org/draft/2020-12/schema", + "title": "vdrl", + "description": "VDRL", + "type": "object", + + "properties": { + "date": { + "description": "Date", + "type": "string", + "format": "date" + }, + "time": { + "description": "Time", + "type": "string", + "format": "time" + }, + "sample": { + "description": "Sample", + "type": "string" + }, + "report": { + "description": "Report", + "type": "string", + "format": "textarea" + } + }, + "required": ["date"] +} -- 2.39.5