Auth0 · Schema

TestCustomDomainResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
success boolean Result of the operation.
message string Message describing the operation status.
View JSON Schema on GitHub

JSON Schema

auth0-testcustomdomainresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TestCustomDomainResponseContent",
  "title": "TestCustomDomainResponseContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "success"
  ],
  "properties": {
    "success": {
      "type": "boolean",
      "description": "Result of the operation."
    },
    "message": {
      "type": "string",
      "description": "Message describing the operation status."
    }
  }
}