Microsoft Office 365 · Schema
PasswordProfile
Contains the password profile associated with a user.
CloudCollaborationEnterpriseMicrosoftProductivity
Properties
| Name | Type | Description |
|---|---|---|
| forceChangePasswordNextSignIn | boolean | Whether the user must change the password on the next sign-in. |
| forceChangePasswordNextSignInWithMfa | boolean | Whether 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. Minimum of 8 characters. |
JSON Schema
{
"$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.",
"properties": {
"forceChangePasswordNextSignIn": {
"type": "boolean",
"description": "Whether the user must change the password on the next sign-in.",
"default": true,
"example": true
},
"forceChangePasswordNextSignInWithMfa": {
"type": "boolean",
"description": "Whether 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. Minimum of 8 characters.",
"example": "example_value"
}
}
}