{ "$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." } } }