{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EmailDomain", "title": "EmailDomain", "type": "object", "properties": { "domain": { "type": "string" }, "verification": { "$ref": "#/components/schemas/EmailDomainVerification" }, "dns_validation_records": { "type": "array", "items": { "$ref": "#/components/schemas/DNSRecord" }, "readOnly": true }, "created_at": { "$ref": "#/components/schemas/CreatedAt" }, "updated_at": { "$ref": "#/components/schemas/UpdatedAt" } }, "additionalProperties": false, "required": [ "domain", "verification", "dns_validation_records", "created_at", "updated_at" ] }