{ "$schema": "https://json-schema.org/draft/2020-12/schema", "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", "description": "The password for the user. Must satisfy the password complexity requirements of the tenant. Required on create." }, "forceChangePasswordNextSignIn": { "type": "boolean", "description": "true if the user must change the password on the next sign-in; false otherwise" }, "forceChangePasswordNextSignInWithMfa": { "type": "boolean", "description": "true if the user must perform multi-factor authentication before being forced to change the password" } } }