From: Agnibho Mondal Date: Mon, 24 May 2021 12:51:04 +0000 (+0530) Subject: New forms X-Git-Url: https://code.agnibho.com/repo?a=commitdiff_plain;h=ed8833451c18e4df6f98bfa44bffda0cea201af3;p=simpleipd.git New forms --- 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-ascitic.schema.json deleted file mode 100644 index 26daa33..0000000 --- a/www/forms/report-fluid-ascitic.schema.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "$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" - }, - "sample": { - "description": "Sample", - "type": "string" - }, - "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/www/forms/report-fluid.schema.json b/www/forms/report-fluid.schema.json new file mode 100644 index 0000000..d296c22 --- /dev/null +++ b/www/forms/report-fluid.schema.json @@ -0,0 +1,68 @@ +{ + "$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" + }, + "sample": { + "description": "Sample", + "type": "string" + }, + "cellCount": { + "description": "Cell Count", + "type": "integer" + }, + "cellType": { + "description": "Cell Type", + "type": "string" + }, + "protein": { + "description": "Protein", + "type": "integer" + }, + "sugar": { + "description": "Sugar", + "type": "integer" + }, + "ada": { + "description": "ADA", + "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/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"] +}