Properties
| Name | Type | Description |
|---|---|---|
| 16x16 | string | The URL of the user's 16x16 pixel avatar. |
| 24x24 | string | The URL of the user's 24x24 pixel avatar. |
| 32x32 | string | The URL of the user's 32x32 pixel avatar. |
| 48x48 | string | The URL of the user's 48x48 pixel avatar. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UserBeanAvatarUrls",
"title": "UserBeanAvatarUrls",
"additionalProperties": false,
"properties": {
"16x16": {
"description": "The URL of the user's 16x16 pixel avatar.",
"format": "uri",
"type": "string"
},
"24x24": {
"description": "The URL of the user's 24x24 pixel avatar.",
"format": "uri",
"type": "string"
},
"32x32": {
"description": "The URL of the user's 32x32 pixel avatar.",
"format": "uri",
"type": "string"
},
"48x48": {
"description": "The URL of the user's 48x48 pixel avatar.",
"format": "uri",
"type": "string"
}
},
"type": "object"
}