From 896f0d91ce332bd98d6ba43001bf65de245f2c56 Mon Sep 17 00:00:00 2001 From: Philippe Antoine Date: Wed, 8 Jun 2022 11:23:47 +0200 Subject: [PATCH] quic: complete schema.json adding ja3 and extension fields --- etc/schema.json | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/etc/schema.json b/etc/schema.json index fe8c1c28fb..9debd45893 100644 --- a/etc/schema.json +++ b/etc/schema.json @@ -2819,6 +2819,53 @@ "string": { "type": "string" } + }, + "additionalProperties": false + } + }, + "extensions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "type": { + "type": "integer" + }, + "values": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "additionalProperties": false + } + }, + "ja3": { + "type": "object", + "optional": true, + "properties": { + "hash": { + "type": "string" + }, + "string": { + "type": "string" + } + }, + "additionalProperties": false + }, + "ja3s": { + "type": "object", + "optional": true, + "properties": { + "hash": { + "type": "string" + }, + "string": { + "type": "string" } }, "additionalProperties": false -- 2.47.2