From: Agnibho Mondal Date: Sat, 22 May 2021 07:38:04 +0000 (+0530) Subject: Added COVID form X-Git-Url: https://code.agnibho.com/repo?a=commitdiff_plain;h=1fb711645f33e9d4848959d8e363c4a61c961764;p=simpleipd.git Added COVID form --- 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"] +}