Sangsik Yoon | f0b3ad8 | 2016-08-19 18:47:59 +0900 | [diff] [blame] | 1 | { |
2 | "type": "object", | ||||
3 | "title": "protocolStatistics", | ||||
4 | "required": [ | ||||
5 | "receivedTime", | ||||
6 | "dpiStatInfo" | ||||
7 | ], | ||||
8 | "properties": { | ||||
9 | "receivedTime": { | ||||
10 | "type": "string", | ||||
11 | "example": "2016-06-12 04:05:05" | ||||
12 | }, | ||||
13 | "dpiStatInfo": { | ||||
14 | "type": "object", | ||||
15 | "title": "dpiStatInfo", | ||||
16 | "required": [ | ||||
17 | "detectedProtos" | ||||
18 | ], | ||||
19 | "properties": { | ||||
20 | "detectedProtos": { | ||||
21 | "type": "array", | ||||
22 | "xml": { | ||||
23 | "name": "detectedProtos", | ||||
24 | "wrapped": true | ||||
25 | }, | ||||
26 | "items": { | ||||
27 | "type": "object", | ||||
28 | "title": "protos", | ||||
29 | "required": [ | ||||
30 | "name", | ||||
31 | "breed", | ||||
32 | "packets", | ||||
33 | "bytes", | ||||
34 | "flows" | ||||
35 | ], | ||||
36 | "properties": { | ||||
37 | "name": { | ||||
38 | "type": "string", | ||||
39 | "example": "TCP" | ||||
40 | }, | ||||
41 | "breed": { | ||||
42 | "type": "string", | ||||
43 | "example": "Acceptable" | ||||
44 | }, | ||||
45 | "packets": { | ||||
46 | "type": "integer", | ||||
47 | "format": "int64", | ||||
48 | "example": 69889 | ||||
49 | }, | ||||
50 | "bytes": { | ||||
51 | "type": "integer", | ||||
52 | "format": "int64", | ||||
53 | "example": 69889 | ||||
54 | }, | ||||
55 | "flows": { | ||||
56 | "type": "integer", | ||||
57 | "format": "int32", | ||||
58 | "example": 9889 | ||||
59 | } | ||||
60 | } | ||||
61 | } | ||||
62 | } | ||||
63 | } | ||||
64 | } | ||||
65 | } | ||||
66 | } |