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-8.0.0-beta1~783 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2eefc4dac84a186b788b670a8c21f05417002952;p=thirdparty%2Fsuricata.git schema/tls: add missing custom fields chain/cert Task #7287 --- diff --git a/etc/schema.json b/etc/schema.json index 9decf4c42b..03db8c7c3d 100644 --- a/etc/schema.json +++ b/etc/schema.json @@ -6586,9 +6586,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" },