Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions etc/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -999,6 +999,10 @@
"description": "DNS opcode as an integer",
"type": "integer"
},
"tc": {
"description": "A 1-bit subfield for truncated response that specifies if the length of the message exceeds the allowed length",
"type": "boolean"
},
"answers": {
"type": "array",
"minItems": 1,
Expand Down Expand Up @@ -1034,6 +1038,22 @@
}
},
"additionalProperties": false
},
"sshfp": {
"description": "A Secure Shell fingerprint is used to verify the system’s authenticity",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Small suggestion:

Suggested change
"description": "A Secure Shell fingerprint is used to verify the system’s authenticity",
"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
Expand Down Expand Up @@ -1190,6 +1210,26 @@
"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
Expand Down