Atlassian · Schema
UserPickerUser
A user found in a search.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| accountId | string | The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. |
| avatarUrl | string | The avatar URL of the user. |
| displayName | string | The display name of the user. Depending on the user’s privacy setting, this may be returned as null. |
| html | string | The display name, email address, and key of the user with the matched query string highlighted with the HTML bold tag. |
| key | string | This property is no longer available. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details. |
| name | string | This property is no longer available . See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UserPickerUser",
"title": "UserPickerUser",
"additionalProperties": false,
"description": "A user found in a search.",
"properties": {
"accountId": {
"description": "The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*.",
"type": "string"
},
"avatarUrl": {
"description": "The avatar URL of the user.",
"format": "uri",
"type": "string"
},
"displayName": {
"description": "The display name of the user. Depending on the user\u2019s privacy setting, this may be returned as null.",
"type": "string"
},
"html": {
"description": "The display name, email address, and key of the user with the matched query string highlighted with the HTML bold tag.",
"type": "string"
},
"key": {
"description": "This property is no longer available. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details.",
"type": "string"
},
"name": {
"description": "This property is no longer available . See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details.",
"type": "string"
}
},
"type": "object"
}