From ac7b0670ca8676a68a0e5fddc3982da5f4dd2154 Mon Sep 17 00:00:00 2001 From: Agnibho Mondal Date: Sun, 23 May 2021 14:51:33 +0530 Subject: [PATCH] Added ICTC --- www/forms/report-ictc.schema.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 www/forms/report-ictc.schema.json diff --git a/www/forms/report-ictc.schema.json b/www/forms/report-ictc.schema.json new file mode 100644 index 0000000..6695407 --- /dev/null +++ b/www/forms/report-ictc.schema.json @@ -0,0 +1,29 @@ +{ + "$schema": "http://json-schema.org/draft/2020-12/schema", + "title": "ictc", + "description": "ICTC", + "type": "object", + + "properties": { + "date": { + "description": "Date", + "type": "string", + "format": "date" + }, + "time": { + "description": "Time", + "type": "string", + "format": "time" + }, + "sample": { + "description": "Sample", + "type": "string" + }, + "report": { + "description": "Interpretation of Result", + "type": "string", + "enum": ["Negative", "Positive for HIV-1", "Positive for HIV-1 and HIV-2 or HIV-2 alone", "Indeterminate"] + } + }, + "required": ["date"] +} -- 2.39.5