Found and added missing dns fields in schema.json after manual code review.
Added description to these newly added dns fields.
Feature #5642
"description": "DNS opcode as an integer",
"type": "integer"
},
+ "tc": {
+ "description": "DNS truncation flag",
+ "type": "boolean"
+ },
"answers": {
"type": "array",
"minItems": 1,
}
},
"additionalProperties": false
+ },
+ "sshfp": {
+ "description": "A Secure Shell fingerprint, used to verify the system’s authenticity",
+ "type": "object",
+ "properties": {
+ "fingerprint": {
+ "type": "string"
+ },
+ "algo": {
+ "type": "integer"
+ },
+ "type": {
+ "type": "integer"
+ }
+ },
+ "additionalProperties": false
}
},
"additionalProperties": false
"items": {
"type": "string"
}
+ },
+ "SSHFP": {
+ "description": "A Secure Shell fingerprint is used to verify the system’s authenticity",
+ "type": "array",
+ "minItems": 1,
+ "items": {
+ "type": "object",
+ "properties": {
+ "fingerprint": {
+ "type": "string"
+ },
+ "algo": {
+ "type": "integer"
+ },
+ "type": {
+ "type": "integer"
+ }
+ },
+ "additionalProperties": false
+ }
}
},
"additionalProperties": false