Properties
| Name | Type | Description |
|---|---|---|
| content | string | Formatted DNSKEY content. See 'data' to set DNSKEY properties. |
| data | object | Components of a DNSKEY record. |
| type | string | Record type. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/dns-records_DNSKEYRecord",
"title": "DNSKEY Record",
"properties": {
"content": {
"description": "Formatted DNSKEY content. See 'data' to set DNSKEY properties.",
"readOnly": true,
"type": "string"
},
"data": {
"description": "Components of a DNSKEY record.",
"properties": {
"algorithm": {
"description": "Algorithm.",
"example": 5,
"maximum": 255,
"minimum": 0,
"type": "number"
},
"flags": {
"description": "Flags.",
"example": 1,
"maximum": 65535,
"minimum": 0,
"type": "number"
},
"protocol": {
"description": "Protocol.",
"example": 3,
"maximum": 255,
"minimum": 0,
"type": "number"
},
"public_key": {
"description": "Public Key.",
"type": "string"
}
},
"type": "object"
},
"type": {
"description": "Record type.",
"enum": [
"DNSKEY"
],
"example": "DNSKEY",
"type": "string"
}
},
"type": "object"
}