{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserBean", "title": "UserBean", "additionalProperties": false, "properties": { "accountId": { "description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*.", "maxLength": 128, "type": "string" }, "active": { "description": "Whether the user is active.", "type": "boolean" }, "avatarUrls": { "allOf": [ { "$ref": "#/components/schemas/UserBeanAvatarUrls" } ], "description": "The avatars of the user." }, "displayName": { "description": "The display name of the user. Depending on the user\u2019s privacy setting, this may return an alternative value.", "type": "string" }, "key": { "description": "This property is deprecated in favor of `accountId` because of privacy changes. See the [migration guide](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details. \nThe key of the user.", "type": "string" }, "name": { "description": "This property is deprecated in favor of `accountId` because of privacy changes. See the [migration guide](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details. \nThe username of the user.", "type": "string" }, "self": { "description": "The URL of the user.", "format": "uri", "type": "string" } }, "type": "object" }