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