Properties
| Name | Type | Description |
|---|---|---|
| content | string | Formatted SSHFP content. See 'data' to set SSHFP properties. |
| data | object | Components of a SSHFP record. |
| type | string | Record type. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/dns-records_SSHFPRecord",
"title": "SSHFP Record",
"properties": {
"content": {
"description": "Formatted SSHFP content. See 'data' to set SSHFP properties.",
"readOnly": true,
"type": "string"
},
"data": {
"description": "Components of a SSHFP record.",
"properties": {
"algorithm": {
"description": "algorithm.",
"example": 2,
"maximum": 255,
"minimum": 0,
"type": "number"
},
"fingerprint": {
"description": "fingerprint.",
"type": "string"
},
"type": {
"description": "type.",
"example": 1,
"maximum": 255,
"minimum": 0,
"type": "number"
}
},
"type": "object"
},
"type": {
"description": "Record type.",
"enum": [
"SSHFP"
],
"example": "SSHFP",
"type": "string"
}
},
"type": "object"
}