{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DomainVerificationMethod", "title": "DomainVerificationMethod", "type": "object", "additionalProperties": false, "required": [ "name", "record" ], "properties": { "name": { "$ref": "#/components/schemas/DomainVerificationMethodNameEnum" }, "record": { "type": "string", "description": "Value used to verify the domain.", "default": "auth0-domain-verification=..." }, "domain": { "type": "string", "description": "The name of the txt record for verification", "default": "_cf-custom-hostname.login.mycompany.com" } } }