Properties
| Name | Type | Description |
|---|---|---|
| content | string | Formatted URI content. See 'data' to set URI properties. |
| data | object | Components of a URI record. |
| priority | object | |
| type | string | Record type. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/dns-records_URIRecord",
"title": "URI Record",
"properties": {
"content": {
"description": "Formatted URI content. See 'data' to set URI properties.",
"readOnly": true,
"type": "string"
},
"data": {
"description": "Components of a URI record.",
"properties": {
"target": {
"description": "The record content.",
"example": "http://example.com/example.html",
"type": "string"
},
"weight": {
"description": "The record weight.",
"example": 20,
"maximum": 65535,
"minimum": 0,
"type": "number"
}
},
"type": "object"
},
"priority": {
"$ref": "#/components/schemas/dns-records_priority"
},
"type": {
"description": "Record type.",
"enum": [
"URI"
],
"example": "URI",
"type": "string"
}
},
"type": "object"
}