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