]> Softwares of Agnibho - simpleipd.git/commitdiff
Added COVID form
authorAgnibho Mondal <mondal@agnibho.com>
Sat, 22 May 2021 07:38:04 +0000 (13:08 +0530)
committerAgnibho Mondal <mondal@agnibho.com>
Sat, 22 May 2021 07:38:04 +0000 (13:08 +0530)
www/forms/report-covid.schema.json [new file with mode: 0644]

diff --git a/www/forms/report-covid.schema.json b/www/forms/report-covid.schema.json
new file mode 100644 (file)
index 0000000..25cee7a
--- /dev/null
@@ -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"]
+}