From: Juliana Fajardini Date: Fri, 27 Sep 2024 13:49:21 +0000 (-0300) Subject: schema/tls: add missing custom fields chain/cert X-Git-Tag: suricata-7.0.8~48 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=490931c166aa979385d06c7f0ae444e6ed6905d8;p=thirdparty%2Fsuricata.git schema/tls: add missing custom fields chain/cert Task #7287 (cherry picked from commit 2eefc4dac84a186b788b670a8c21f05417002952) --- diff --git a/etc/schema.json b/etc/schema.json index 24b302e880..f63f4311ec 100644 --- a/etc/schema.json +++ b/etc/schema.json @@ -5389,9 +5389,29 @@ "tls": { "type": "object", "properties": { + "certificate": { + "type": "string" + }, + "chain": { + "type": "array", + "minItems": 1, + "items": { + "type": "string" + } + }, "client": { "type": "object", "properties": { + "certificate": { + "type": "string" + }, + "chain": { + "type": "array", + "minItems": 1, + "items": { + "type": "string" + } + }, "fingerprint": { "type": "string" },