]> Softwares of Agnibho - simpleipd.git/blob - www/forms/report-ldh.schema.json
Added reporting time
[simpleipd.git] / www / forms / report-ldh.schema.json
1 {
2 "$schema": "http://json-schema.org/draft/2020-12/schema",
3 "title": "ldh",
4 "description": "LDH",
5 "type": "object",
6
7 "properties": {
8 "date": {
9 "description": "Sample Date",
10 "type": "string",
11 "format": "date"
12 },
13 "time": {
14 "description": "Sample Time",
15 "type": "string",
16 "format": "time"
17 },
18 "rdate": {
19 "description": "Report Date",
20 "type": "string",
21 "format": "date"
22 },
23 "rtime": {
24 "description": "Report Time",
25 "type": "string",
26 "format": "time"
27 },
28 "sample": {
29 "description": "Sample",
30 "type": "string"
31 },
32 "ldh": {
33 "description": "LDH (U/L)",
34 "type": "number",
35 "range": [225,450]
36 }
37 },
38 "required": ["date"]
39 }