Auth0 · Schema

DomainMetadata

Domain metadata associated with the custom domain, in the form of an object with string values (max 255 chars). Maximum of 10 domain metadata properties allowed.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-domainmetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DomainMetadata",
  "title": "DomainMetadata",
  "type": "object",
  "description": "Domain metadata associated with the custom domain, in the form of an object with string values (max 255 chars). Maximum of 10 domain metadata properties allowed.",
  "additionalProperties": {
    "type": [
      "string",
      "null"
    ],
    "maxLength": 255
  },
  "maxProperties": 10
}