Skip to content

Commit bdf2e61

Browse files
committed
add tcp-ip layer to findings-schema
Signed-off-by: Johannes Zahn <johannes.zahn@iteratec.com>
1 parent 91503e7 commit bdf2e61

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

parser-sdk/nodejs/findings-schema.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"$schema": "http://json-schema.org/draft-04/schema",
33
"type": "array",
4+
"description": "Array of Findings.",
45
"items": {
56
"$ref": "#/$defs/finding"
67
},
@@ -37,8 +38,19 @@
3738
"description": "Is often used to group finding based on their types.",
3839
"type": "string"
3940
},
41+
"tcp_ip_stack_layer":{
42+
"type": "string",
43+
"description": "TCP/IP Reference Model Layer that the Finding fits into.",
44+
"nullable": true,
45+
"enum": [
46+
"LINK",
47+
"INTERNET",
48+
"TRANSPORT",
49+
"APPLICATION"
50+
]
51+
},
4052
"osi_layer": {
41-
"description": "OSI Layer the finding fits into.",
53+
"description": "OSI Layer the finding fits into. This will be replaced by the field tcp_ip_stack_layer in secureCodeBox v3.",
4254
"type": "string",
4355
"enum": [
4456
"NETWORK_INTERFACE",

0 commit comments

Comments
 (0)