From 9dff5949e69ca5f6d6d168863b6306e1ee716662 Mon Sep 17 00:00:00 2001 From: Hadiqa Alamdar Bukhari Date: Tue, 13 Feb 2024 17:55:38 +0500 Subject: [PATCH] dns: add missing dns keywords to schema.json Found and added missing dns fields in schema.json after manual code review. Added description to these newly added dns fields. Feature #5642 --- etc/schema.json | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/etc/schema.json b/etc/schema.json index b06dbd4b29fe..d9a7d590d992 100644 --- a/etc/schema.json +++ b/etc/schema.json @@ -999,6 +999,10 @@ "description": "DNS opcode as an integer", "type": "integer" }, + "tc": { + "description": "A 1-bit subfield that specifies if the length of the message exceeds the allowed length", + "type": "boolean" + }, "answers": { "type": "array", "minItems": 1, @@ -1034,6 +1038,22 @@ } }, "additionalProperties": false + }, + "sshfp": { + "type": "object", + "description": "A Secure Shell fingerprint is used to verify the system’s authenticity", + "properties": { + "fingerprint": { + "type": "string" + }, + "algo": { + "type": "integer" + }, + "type": { + "type": "integer" + } + }, + "additionalProperties": false } }, "additionalProperties": false @@ -1190,6 +1210,26 @@ "items": { "type": "string" } + }, + "SSHFP": { + "type": "array", + "description": "A Secure Shell fingerprint is used to verify the system’s authenticity", + "minItems": 1, + "items": { + "type": "object", + "properties": { + "fingerprint": { + "type": "string" + }, + "algo": { + "type": "integer" + }, + "type": { + "type": "integer" + } + }, + "additionalProperties": false + } } }, "additionalProperties": false