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
pull/10486/head
Hadiqa Alamdar Bukhari 1 year ago committed by Victor Julien
parent ebf465a11b
commit 6c193b1a3d

@ -999,6 +999,10 @@
"description": "DNS opcode as an integer", "description": "DNS opcode as an integer",
"type": "integer" "type": "integer"
}, },
"tc": {
"description": "DNS truncation flag",
"type": "boolean"
},
"answers": { "answers": {
"type": "array", "type": "array",
"minItems": 1, "minItems": 1,
@ -1034,6 +1038,22 @@
} }
}, },
"additionalProperties": false "additionalProperties": false
},
"sshfp": {
"description": "A Secure Shell fingerprint, used to verify the systems authenticity",
"type": "object",
"properties": {
"fingerprint": {
"type": "string"
},
"algo": {
"type": "integer"
},
"type": {
"type": "integer"
}
},
"additionalProperties": false
} }
}, },
"additionalProperties": false "additionalProperties": false
@ -1190,6 +1210,26 @@
"items": { "items": {
"type": "string" "type": "string"
} }
},
"SSHFP": {
"description": "A Secure Shell fingerprint is used to verify the systems authenticity",
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"properties": {
"fingerprint": {
"type": "string"
},
"algo": {
"type": "integer"
},
"type": {
"type": "integer"
}
},
"additionalProperties": false
}
} }
}, },
"additionalProperties": false "additionalProperties": false

Loading…
Cancel
Save