]> Softwares of Agnibho - simpleipd.git/commitdiff
Added ICTC
authorAgnibho Mondal <mondal@agnibho.com>
Sun, 23 May 2021 09:21:33 +0000 (14:51 +0530)
committerAgnibho Mondal <mondal@agnibho.com>
Sun, 23 May 2021 09:21:33 +0000 (14:51 +0530)
www/forms/report-ictc.schema.json [new file with mode: 0644]

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