]> Softwares of Agnibho - simpleipd.git/blob - forms/report-lipid.schema.json
Sanitized user input
[simpleipd.git] / forms / report-lipid.schema.json
1 {
2 "$schema": "http://json-schema.org/draft/2020-12/schema",
3 "title": "lipid",
4 "description": "Lipid Profile",
5 "type": "object",
6
7 "properties": {
8 "date": {
9 "description": "Date",
10 "type": "string",
11 "format": "date"
12 },
13 "time": {
14 "description": "Time",
15 "type": "string",
16 "format": "time"
17 },
18
19 "ldl": {
20 "description": "LDL",
21 "type": "number"
22 },
23 "hdl": {
24 "description": "HDL",
25 "type": "number"
26 },
27 "tgl": {
28 "description": "Triglyceride",
29 "type": "number"
30 },
31 "chol": {
32 "description": "Cholesterol",
33 "type": "number"
34 }
35 },
36 "required": ["date"]
37 }