{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "PasswordProfile", "type": "object", "description": "Contains the password profile associated with a user.", "properties": { "forceChangePasswordNextSignIn": { "type": "boolean", "description": "True if the user must change their password on the next sign-in." }, "forceChangePasswordNextSignInWithMfa": { "type": "boolean", "description": "If true, the user must perform multi-factor authentication before being forced to change their password." }, "password": { "type": "string", "description": "The password for the user. Must satisfy the tenant's password complexity requirements. Setting a strong password is recommended." } } }