]> Softwares of Agnibho - simpleipd.git/blob - www/forms/physician.schema.json
Bugfix
[simpleipd.git] / www / forms / physician.schema.json
1 {
2 "$schema": "http://json-schema.org/draft/2020-12/schema",
3 "title": "physician",
4 "description": "Physician Notes",
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 "status": {
19 "description": "Status",
20 "type": "string"
21 },
22 "bp": {
23 "description": "Blood Pressure",
24 "type": "string"
25 },
26 "pr": {
27 "description": "Pulse",
28 "type": "integer"
29 },
30 "rr": {
31 "description": "Respiratory Rate",
32 "type": "integer"
33 },
34 "spo2": {
35 "description": "SpO2",
36 "type": "integer"
37 },
38 "chest": {
39 "description": "Chest Findings",
40 "type": "string"
41 },
42 "o2_device": {
43 "description": "O2 Delivery Device",
44 "type": "string",
45 "enum": ["no_supplemental_o2", "nasal_cannula", "face_mask", "nrbm", "hfnc", "cpap", "bipap", "mv", "other"]
46 },
47 "o2_flow": {
48 "description": "O2 Flow Requirement (L/min)",
49 "type": "integer"
50 },
51 "bipap_ipap": {
52 "description": "BIPAP IPAP",
53 "type": "integer"
54 },
55 "bipap_epap":{
56 "description": "BIPAP EPAP",
57 "type": "integer"
58 },
59 "fi02": {
60 "description": "FiO2",
61 "type": "integer"
62 },
63 "mv_mode": {
64 "description": "Mechanical Ventillator Mode",
65 "type": "string"
66 },
67 "mv_tv": {
68 "description": "MV Tidal Volume",
69 "type": "integer"
70 },
71 "mv_peep": {
72 "description": "MV PEEP",
73 "type": "integer"
74 },
75 "mv_ppeak": {
76 "description": "MV P-Peak",
77 "type": "integer"
78 },
79 "mv_pplateau": {
80 "description": "MV P-Plateau",
81 "type": "integer"
82 },
83 "bw": {
84 "description": "Body Weight (kg)",
85 "type": "string"
86 }
87 },
88 "required": ["date","time"]
89 }