]> Softwares of Agnibho - simpleipd.git/blob - forms/nursing.schema.json
03ddc374575dae247b8f7104892d241a15bb4734
[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": "string"
25 },
26 "output": {
27 "description": "Output",
28 "type": "string"
29 },
30 "bp": {
31 "description": "Blood Pressure",
32 "type": "string"
33 },
34 "pr": {
35 "description": "Pulse",
36 "type": "integer"
37 },
38 "rr": {
39 "description": "Respiratory Rate",
40 "type": "integer"
41 },
42 "spo2": {
43 "description": "SpO2",
44 "type": "integer"
45 }
46 },
47 "required": ["date","time"]
48 }