{
"$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. The passwordProfile property of the user entity is a passwordProfile object.",
"properties": {
"password": {
"type": "string",
"writeOnly": true,
"description": "The password for the user. Must satisfy the password complexity requirements of the tenant. Required on create.",
"example": "example_value"
},
"forceChangePasswordNextSignIn": {
"type": "boolean",
"description": "true if the user must change the password on the next sign-in; false otherwise",
"default": false,
"example": true
},
"forceChangePasswordNextSignInWithMfa": {
"type": "boolean",
"description": "true if the user must perform multi-factor authentication before being forced to change the password",
"default": false,
"example": true
}
}
}