From: Agnibho Mondal Date: Thu, 3 Jun 2021 00:19:02 +0000 (+0530) Subject: Bugfix X-Git-Url: https://code.agnibho.com/repo?a=commitdiff_plain;h=bc1533a02ddb9ccb9524c6ca6428b603461af31d;p=simpleipd.git Bugfix --- diff --git a/www/forms/report-dd.schema.json b/www/forms/report-dd.schema.json new file mode 100644 index 0000000..296f09c --- /dev/null +++ b/www/forms/report-dd.schema.json @@ -0,0 +1,29 @@ +{ + "$schema": "http://json-schema.org/draft/2020-12/schema", + "title": "culture_sensitivity", + "description": "Culture Sensitivity", + "type": "object", + + "properties": { + "date": { + "description": "Date", + "type": "string", + "format": "date" + }, + "time": { + "description": "Time", + "type": "string", + "format": "time" + }, + "sample": { + "description": "Sample", + "type": "string" + }, + "report": { + "description": "Report", + "type": "string", + "format": "textarea" + } + }, + "required": ["date"] +}