]> Softwares of Agnibho - simpleipd.git/blob - www/forms/report-ch.schema.json
98ab96af2cd1efdde6c7e3fe0cfb61d58553c207
[simpleipd.git] / www / forms / report-ch.schema.json
1 {
2 "$schema": "http://json-schema.org/draft/2020-12/schema",
3 "title": "ch",
4 "description": "Complete Hemogram",
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 "sample": {
19 "description": "Sample",
20 "type": "string"
21 },
22 "hb": {
23 "description": "Hemoglobin (g/dL)",
24 "type": "number",
25 "range": [10,null]
26 },
27 "mcv": {
28 "description": "MCV (fl)",
29 "type": "number",
30 "range": [80,100]
31 },
32 "mch": {
33 "description": "MCH (pg)",
34 "type": "number",
35 "range": [27,31]
36 },
37 "mchc": {
38 "description": "MCHC (g/dL)",
39 "type": "number",
40 "range": [32,36]
41 },
42 "rbc": {
43 "description": "RBC (&times;10<sup>6</sup>)",
44 "type": "number"
45 },
46 "wbc": {
47 "description": "WBC (&times;10<sup>3</sup>)",
48 "type": "number",
49 "range": [4,8]
50 },
51 "n": {
52 "description": "Neutrophil",
53 "type": "number"
54 },
55 "l": {
56 "description": "Lymphocyte",
57 "type": "number"
58 },
59 "e": {
60 "description": "Eosinophil",
61 "type": "number"
62 },
63 "m": {
64 "description": "Monocyte",
65 "type": "number"
66 },
67 "b": {
68 "description": "Basophil",
69 "type": "number"
70 },
71 "plt": {
72 "description": "Platelet (&times;10<sup>3</sup>)",
73 "type": "number",
74 "range": [100,null]
75 }
76 },
77 "required": ["date"]
78 }