Auth0 · Schema

DomainVerificationMethod

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name object
record string Value used to verify the domain.
domain string The name of the txt record for verification
View JSON Schema on GitHub

JSON Schema

auth0-domainverificationmethod-schema.json Raw ↑
{
  "$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"
    }
  }
}