PasswordProfile

Contains the password profile associated with a user.

AuthenticationAuthorizationIdentityMicrosoftMicrosoft EntraOAuthOpenID ConnectSAMLSCIMSingle Sign-OnZero Trust

Properties

Name Type Description
forceChangePasswordNextSignIn boolean True if the user must change their password on the next sign-in.
forceChangePasswordNextSignInWithMfa boolean If true, the user must perform multi-factor authentication before being forced to change their password.
password string The password for the user. Must satisfy the tenant's password complexity requirements. Setting a strong password is recommended.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-active-directory-passwordprofile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PasswordProfile",
  "title": "PasswordProfile",
  "type": "object",
  "description": "Contains the password profile associated with a user.",
  "required": [
    "password"
  ],
  "properties": {
    "forceChangePasswordNextSignIn": {
      "type": "boolean",
      "description": "True if the user must change their password on the next sign-in.",
      "default": false,
      "example": true
    },
    "forceChangePasswordNextSignInWithMfa": {
      "type": "boolean",
      "description": "If true, the user must perform multi-factor authentication before being forced to change their password.",
      "default": false,
      "example": true
    },
    "password": {
      "type": "string",
      "format": "password",
      "description": "The password for the user. Must satisfy the tenant's password complexity requirements. Setting a strong password is recommended.",
      "example": "example_value"
    }
  }
}