]> Softwares of Agnibho - simpleipd.git/blob - forms/nursing.schema.json
83ea5850089b21901a6dd4875e9fefdc16fe7a2a
[simpleipd.git] / forms / nursing.schema.json
1 {
2 "$schema": "http://json-schema.org/draft/2020-12/schema",
3 "title": "nursing",
4 "description": "Nursing 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 "intake": {
23 "description": "Intake",
24 "type": "integer"
25 },
26 "output": {
27 "description": "Output",
28 "type": "integer"
29 },
30 "bw": {
31 "description": "Body Weight",
32 "type": "string"
33 },
34 "bp": {
35 "description": "Blood Pressure",
36 "type": "string"
37 },
38 "pr": {
39 "description": "Pulse",
40 "type": "integer"
41 },
42 "rr": {
43 "description": "Respiratory Rate",
44 "type": "integer"
45 },
46 "spo2": {
47 "description": "SpO2",
48 "type": "integer"
49 }
50 },
51 "required": ["date","time"]
52 }