{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/dns-records_ARecord", "title": "A Record", "properties": { "content": { "description": "A valid IPv4 address.", "example": "198.51.100.4", "format": "ipv4", "type": "string" }, "type": { "description": "Record type.", "enum": [ "A" ], "example": "A", "type": "string" } }, "type": "object" }