Properties
| Name | Type | Description |
|---|---|---|
| name | string | The fully qualified domain name for the A record. |
| ipv4addr | string | The IPv4 address. |
| ttl | integer | The time to live in seconds. |
| use_ttl | boolean | Whether to use the specified TTL value. |
| comment | string | A descriptive comment for the record. |
| disable | boolean | Whether to disable the record. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RecordAUpdate",
"title": "RecordAUpdate",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The fully qualified domain name for the A record."
},
"ipv4addr": {
"type": "string",
"format": "ipv4",
"description": "The IPv4 address."
},
"ttl": {
"type": "integer",
"description": "The time to live in seconds."
},
"use_ttl": {
"type": "boolean",
"description": "Whether to use the specified TTL value."
},
"comment": {
"type": "string",
"description": "A descriptive comment for the record.",
"maxLength": 256
},
"disable": {
"type": "boolean",
"description": "Whether to disable the record."
}
}
}