{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateMerchantUserRequest", "title": "UpdateMerchantUserRequest", "properties": { "accountGroups": { "description": "The list of [account groups](https://docs.adyen.com/account/account-structure#account-groups) associated with this user.", "items": { "type": "string" }, "type": "array" }, "active": { "description": "Sets the status of the user to active (**true**) or inactive (**false**).", "type": "boolean" }, "email": { "description": "The email address of the user.", "type": "string" }, "name": { "description": "The user's full name.", "maxLength": 80, "minLength": 1, "$ref": "#/components/schemas/Name2" }, "roles": { "description": "The list of [roles](https://docs.adyen.com/account/user-roles) for this user.", "items": { "type": "string" }, "type": "array" }, "timeZoneCode": { "description": "The [tz database name](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) of the time zone of the user. For example, **Europe/Amsterdam**.", "type": "string" } }, "type": "object" }