{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EmailDomainVerification", "title": "EmailDomainVerification", "type": "object", "properties": { "status": { "$ref": "#/components/schemas/EmailVerificationStatus" }, "last_time_checked": { "description": "An ISO-8601 timestamp representation of the last time the verification got checked.", "type": "string", "format": "date-time", "example": "2022-11-04T20:10:06.927Z", "readOnly": true }, "last_time_success": { "description": "An ISO-8601 timestamp representation of the last time the verification succeeded.", "type": "string", "format": "date-time", "example": "2022-11-04T20:10:06.927Z", "readOnly": true } }, "additionalProperties": false, "readOnly": true, "required": [ "status", "last_time_checked", "last_time_success" ] }