From bef296dca656a795c25f10eb5372e487fd0e193b Mon Sep 17 00:00:00 2001 From: Agnibho Mondal Date: Mon, 24 May 2021 19:31:11 +0530 Subject: [PATCH] USG WA form --- www/autocomplete/investigation.json | 4 +- www/forms/report-usg-wa.schema.json | 72 +++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+), 2 deletions(-) create mode 100644 www/forms/report-usg-wa.schema.json diff --git a/www/autocomplete/investigation.json b/www/autocomplete/investigation.json index 1aa6a91..7cdaf37 100644 --- a/www/autocomplete/investigation.json +++ b/www/autocomplete/investigation.json @@ -1,8 +1,7 @@ { "tests": [ "Chest Xray", - "Straight Xray Abdomen", - "USG W/A" + "Straight Xray Abdomen" ], "rooms": [ "labmed", @@ -14,6 +13,7 @@ "pathology", "ictc", "suraksha_clinic", + "radiology", "ccu_lab", "other_govt_hospital", "outside_lab" diff --git a/www/forms/report-usg-wa.schema.json b/www/forms/report-usg-wa.schema.json new file mode 100644 index 0000000..b7d66b9 --- /dev/null +++ b/www/forms/report-usg-wa.schema.json @@ -0,0 +1,72 @@ +{ + "$schema": "http://json-schema.org/draft/2020-12/schema", + "title": "usg_wa", + "description": "USG W/A", + "type": "object", + + "properties": { + "date": { + "description": "Date", + "type": "string", + "format": "date" + }, + "time": { + "description": "Time", + "type": "string", + "format": "time" + }, + "sample": { + "description": "Sample", + "type": "string" + }, + "liver": { + "description": "Liver", + "type": "string" + }, + "gb": { + "description": "GB", + "type": "string" + }, + "cbd": { + "description": "CBD", + "type": "string" + }, + "pv": { + "description": "PV", + "type": "string" + }, + "pancreas": { + "description": "Pancreas", + "type": "string" + }, + "spleen": { + "description": "Spleen", + "type": "string" + }, + "rk": { + "description": "RK", + "type": "string" + }, + "lk": { + "description": "LK", + "type": "string" + }, + "ub": { + "description": "UB", + "type": "string" + }, + "prostate": { + "description": "Prostate", + "type": "string" + }, + "ascites": { + "description": "Ascites", + "type": "string" + }, + "rpln": { + "description": "RPLN", + "type": "string" + } + }, + "required": ["date"] +} -- 2.39.5