diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-09-19 10:14:37 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2022-09-19 10:14:37 +0200 |
commit | 015a739efda638737adeed521ca5ba43708949f0 (patch) | |
tree | e4da6a2f5afc6f451911bd34369d6ef334a66153 /schema | |
parent | 31715295d9c2ec580483c089a33f660b21e5539b (diff) |
Added layer4 payload length bins.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'schema')
-rw-r--r-- | schema/flow_event_schema.json | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/schema/flow_event_schema.json b/schema/flow_event_schema.json index 94f2a00df..01060c016 100644 --- a/schema/flow_event_schema.json +++ b/schema/flow_event_schema.json @@ -344,7 +344,7 @@ }, "data_analysis": { "type": "object", - "required": [ "iat", "pktlen" ], + "required": [ "iat", "pktlen", "bins" ], "properties": { "iat": { @@ -420,6 +420,25 @@ } }, "additionalProperties": false + }, + "bins": { + "type": "object", + + "properties": { + "c_to_s": { + "type": "array", + "items": { + "type": "number" + } + }, + "s_to_c": { + "type": "array", + "items": { + "type": "number" + } + } + }, + "additionalProperties": false } }, "additionalProperties": false |