]> Softwares of Agnibho - simpleipd.git/blob - forms/report-fluid.schema.json
Sanitized user input
[simpleipd.git] / forms / report-fluid.schema.json
1 {
2 "$schema": "http://json-schema.org/draft/2020-12/schema",
3 "title": "fluid_study",
4 "description": "Fluid Study",
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 "fluid": {
19 "description": "Fluid",
20 "type": "string",
21 "enum": ["pleural fluid", "ascitic fluid", "csf", "other"]
22 },
23 "cellCount": {
24 "description": "Cell Count",
25 "type": "integer"
26 },
27 "cellType": {
28 "description": "Cell Type",
29 "type": "string"
30 },
31 "protein": {
32 "description": "Protein",
33 "type": "integer"
34 },
35 "sugar": {
36 "description": "Sugar",
37 "type": "integer"
38 },
39 "ldh": {
40 "description": "LDH",
41 "type": "integer"
42 },
43 "gram": {
44 "description": "Gram Stain",
45 "type": "string"
46 },
47 "afb": {
48 "description": "AFB Stain",
49 "type": "string"
50 },
51 "fungal": {
52 "description": "Fungal Stain",
53 "type": "string"
54 },
55 "cs": {
56 "description": "Culture/Sensitivity",
57 "type": "string"
58 },
59 "cbnaat": {
60 "description": "CBNAAT",
61 "type": "string"
62 }
63 },
64 "required": ["date"]
65 }