From 9015f0158e69f0c9325584ce37212ba24cc156c2 Mon Sep 17 00:00:00 2001 From: Agnibho Mondal Date: Sat, 22 May 2021 13:49:32 +0530 Subject: [PATCH] Serology form --- www/forms/report-serology.schema.json | 76 +++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 www/forms/report-serology.schema.json diff --git a/www/forms/report-serology.schema.json b/www/forms/report-serology.schema.json new file mode 100644 index 0000000..33eac6a --- /dev/null +++ b/www/forms/report-serology.schema.json @@ -0,0 +1,76 @@ +{ + "$schema": "http://json-schema.org/draft/2020-12/schema", + "title": "serology", + "description": "Serology", + "type": "object", + + "properties": { + "date": { + "description": "Date", + "type": "string", + "format": "date" + }, + "time": { + "description": "Time", + "type": "string", + "format": "time" + }, + "sample": { + "description": "Sample", + "type": "string" + }, + "hbsag": { + "description": "HBsAg", + "type": "string" + }, + "hbeag": { + "description": "HBeAg", + "type": "string" + }, + "antihcv": { + "description": "Anti-HCV", + "type": "string" + }, + "antihav": { + "description": "Anti-HAV", + "type": "string" + }, + "antihev": { + "description": "Anti-HEV", + "type": "string" + }, + "antihsv": { + "description": "Anti-HSV", + "type": "string" + }, + "dengue_ns1": { + "description": "Dengue NS1", + "type": "string" + }, + "dengue_igm": { + "description": "Dengue IgM", + "type": "string" + }, + "dengue_igg": { + "description": "Dengue IgG", + "type": "string" + }, + "chik_igm": { + "description": "Chikungunya IgM", + "type": "string" + }, + "jap_e_igm": { + "description": "Japanese Encephalitis IgM", + "type": "string" + }, + "scrub_igm": { + "description": "Scrub Typhus IgM", + "type": "string" + }, + "lepto_igm": { + "description": "Leptospira IgM", + "type": "string" + } + }, + "required": ["date"] +} -- 2.39.5