Properties
| Name | Type | Description |
|---|---|---|
| content | string | Formatted CAA content. See 'data' to set CAA properties. |
| data | object | Components of a CAA record. |
| type | string | Record type. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/dns-records_CAARecord",
"title": "CAA Record",
"properties": {
"content": {
"description": "Formatted CAA content. See 'data' to set CAA properties.",
"readOnly": true,
"type": "string"
},
"data": {
"description": "Components of a CAA record.",
"properties": {
"flags": {
"description": "Flags for the CAA record.",
"example": 1,
"maximum": 255,
"minimum": 0,
"type": "number"
},
"tag": {
"description": "Name of the property controlled by this record (e.g.: issue, issuewild, iodef).",
"example": "issue",
"type": "string"
},
"value": {
"description": "Value of the record. This field's semantics depend on the chosen tag.",
"type": "string"
}
},
"type": "object"
},
"type": {
"description": "Record type.",
"enum": [
"CAA"
],
"example": "CAA",
"type": "string"
}
},
"type": "object"
}