From dede6c6b0d50c1131868470b042f91585b6d8a6b Mon Sep 17 00:00:00 2001 From: Agnibho Mondal Date: Fri, 11 Jun 2021 05:17:40 +0530 Subject: [PATCH] Added PCT --- www/forms/report-pct.schema.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 www/forms/report-pct.schema.json diff --git a/www/forms/report-pct.schema.json b/www/forms/report-pct.schema.json new file mode 100644 index 0000000..4127f26 --- /dev/null +++ b/www/forms/report-pct.schema.json @@ -0,0 +1,28 @@ +{ + "$schema": "http://json-schema.org/draft/2020-12/schema", + "title": "pct", + "description": "Procalcitonin", + "type": "object", + + "properties": { + "date": { + "description": "Date", + "type": "string", + "format": "date" + }, + "time": { + "description": "Time", + "type": "string", + "format": "time" + }, + "sample": { + "description": "Sample", + "type": "string" + }, + "pct": { + "description": "Procalcitonin (ng/ml)", + "type": "number" + } + }, + "required": ["date"] +} -- 2.39.5