From 1fb711645f33e9d4848959d8e363c4a61c961764 Mon Sep 17 00:00:00 2001 From: Agnibho Mondal Date: Sat, 22 May 2021 13:08:04 +0530 Subject: [PATCH] Added COVID form --- www/forms/report-covid.schema.json | 36 ++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 www/forms/report-covid.schema.json diff --git a/www/forms/report-covid.schema.json b/www/forms/report-covid.schema.json new file mode 100644 index 0000000..25cee7a --- /dev/null +++ b/www/forms/report-covid.schema.json @@ -0,0 +1,36 @@ +{ + "$schema": "http://json-schema.org/draft/2020-12/schema", + "title": "covid", + "description": "COVID-19", + "type": "object", + + "properties": { + "date": { + "description": "Date", + "type": "string", + "format": "date" + }, + "time": { + "description": "Time", + "type": "string", + "format": "time" + }, + "sample": { + "description": "Sample", + "type": "string" + }, + "rtpcr": { + "description": "RT-PCR", + "type": "string" + }, + "rat": { + "description": "RAT", + "type": "string" + }, + "igg": { + "description": "IgG", + "type": "string" + } + }, + "required": ["date"] +} -- 2.39.5