Properties
| Name | Type | Description |
|---|---|---|
| content | string | Formatted CERT content. See 'data' to set CERT properties. |
| data | object | Components of a CERT record. |
| type | string | Record type. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/dns-records_CERTRecord",
"title": "CERT Record",
"properties": {
"content": {
"description": "Formatted CERT content. See 'data' to set CERT properties.",
"readOnly": true,
"type": "string"
},
"data": {
"description": "Components of a CERT record.",
"properties": {
"algorithm": {
"description": "Algorithm.",
"example": 8,
"maximum": 255,
"minimum": 0,
"type": "number"
},
"certificate": {
"description": "Certificate.",
"type": "string"
},
"key_tag": {
"description": "Key Tag.",
"example": 1,
"maximum": 65535,
"minimum": 0,
"type": "number"
},
"type": {
"description": "Type.",
"example": 9,
"maximum": 65535,
"minimum": 0,
"type": "number"
}
},
"type": "object"
},
"type": {
"description": "Record type.",
"enum": [
"CERT"
],
"example": "CERT",
"type": "string"
}
},
"type": "object"
}