PasswordProfile

Password profile for a Microsoft Entra user account

Active DirectoryAuthenticationAuthorizationDirectory ServicesIdentity ManagementMicrosoft EntraZero Trust

Properties

Name Type Description
password string Password for the user — must meet tenant complexity requirements
forceChangePasswordNextSignIn boolean If true, user must reset password at next sign-in
forceChangePasswordNextSignInWithMfa boolean If true, user must perform MFA and then reset password at next sign-in
View JSON Schema on GitHub

JSON Schema

users-password-profile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/active-directory/main/json-schema/users-password-profile-schema.json",
  "title": "PasswordProfile",
  "description": "Password profile for a Microsoft Entra user account",
  "type": "object",
  "required": ["password"],
  "properties": {
    "password": {
      "type": "string",
      "description": "Password for the user — must meet tenant complexity requirements",
      "writeOnly": true,
      "minLength": 8
    },
    "forceChangePasswordNextSignIn": {
      "type": "boolean",
      "description": "If true, user must reset password at next sign-in",
      "default": true
    },
    "forceChangePasswordNextSignInWithMfa": {
      "type": "boolean",
      "description": "If true, user must perform MFA and then reset password at next sign-in",
      "default": false
    }
  }
}