Auth0 · Schema

GuardianFactor

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
enabled boolean Whether this factor is enabled (true) or disabled (false).
trial_expired boolean Whether trial limits have been exceeded.
name object
View JSON Schema on GitHub

JSON Schema

auth0-guardianfactor-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GuardianFactor",
  "title": "GuardianFactor",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Whether this factor is enabled (true) or disabled (false).",
      "default": true
    },
    "trial_expired": {
      "type": "boolean",
      "description": "Whether trial limits have been exceeded.",
      "default": true
    },
    "name": {
      "$ref": "#/components/schemas/GuardianFactorNameEnum"
    }
  }
}