Properties
| Name | Type | Description |
|---|---|---|
| uuid | string | The public UUID of the label-user. |
| display_name | string | The name to be displayed for this user, as it was given on the request. |
| country | string | The country of the user. 000 stands for "unknown" |
| avatar | object | The current avatar of the user. |
| public_nick_name | string | The current nickname of the user. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LabelUser",
"title": "LabelUser",
"type": "object",
"properties": {
"uuid": {
"type": "string",
"description": "The public UUID of the label-user.",
"readOnly": false,
"writeOnly": false
},
"display_name": {
"type": "string",
"description": "The name to be displayed for this user, as it was given on the request.",
"readOnly": false,
"writeOnly": false
},
"country": {
"type": "string",
"description": "The country of the user. 000 stands for \"unknown\"",
"readOnly": false,
"writeOnly": false
},
"avatar": {
"type": "object",
"description": "The current avatar of the user.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/Avatar"
},
"public_nick_name": {
"type": "string",
"description": "The current nickname of the user.",
"readOnly": true,
"writeOnly": false
}
}
}