Zitadel · Schema

LoginPolicy

AuthenticationAuthorizationIdentity ManagementOpen SourceOAuth 2.0OIDC

Properties

Name Type Description
allowUsernamePassword boolean
allowRegister boolean
allowExternalIdp boolean
forceMfa boolean
passwordlessType string
hidePasswordReset boolean
ignoreUnknownUsernames boolean
defaultRedirectUri string
passwordCheckLifetime string
externalLoginCheckLifetime string
mfaInitSkipLifetime string
secondFactorCheckLifetime string
multiFactorCheckLifetime string
View JSON Schema on GitHub

JSON Schema

zitadel-loginpolicy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LoginPolicy",
  "title": "LoginPolicy",
  "type": "object",
  "properties": {
    "allowUsernamePassword": {
      "type": "boolean"
    },
    "allowRegister": {
      "type": "boolean"
    },
    "allowExternalIdp": {
      "type": "boolean"
    },
    "forceMfa": {
      "type": "boolean"
    },
    "passwordlessType": {
      "type": "string"
    },
    "hidePasswordReset": {
      "type": "boolean"
    },
    "ignoreUnknownUsernames": {
      "type": "boolean"
    },
    "defaultRedirectUri": {
      "type": "string"
    },
    "passwordCheckLifetime": {
      "type": "string"
    },
    "externalLoginCheckLifetime": {
      "type": "string"
    },
    "mfaInitSkipLifetime": {
      "type": "string"
    },
    "secondFactorCheckLifetime": {
      "type": "string"
    },
    "multiFactorCheckLifetime": {
      "type": "string"
    }
  }
}