Properties
| Name | Type | Description |
|---|---|---|
| content | string | Formatted SVCB content. See 'data' to set SVCB properties. |
| data | object | Components of a SVCB record. |
| type | string | Record type. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/dns-records_SVCBRecord",
"title": "SVCB Record",
"properties": {
"content": {
"description": "Formatted SVCB content. See 'data' to set SVCB properties.",
"readOnly": true,
"type": "string"
},
"data": {
"description": "Components of a SVCB record.",
"properties": {
"priority": {
"description": "priority.",
"example": 1,
"maximum": 65535,
"minimum": 0,
"type": "number"
},
"target": {
"description": "target.",
"example": ".",
"type": "string"
},
"value": {
"description": "value.",
"example": "alpn=\"h3,h2\" ipv4hint=\"127.0.0.1\" ipv6hint=\"::1\"",
"type": "string"
}
},
"type": "object"
},
"type": {
"description": "Record type.",
"enum": [
"SVCB"
],
"example": "SVCB",
"type": "string"
}
},
"type": "object"
}