Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier of the user. |
| username | string | Email address and login identifier. |
| fullName | string | Full name of the user. |
| role | object | Role of the user. |
| blocked | boolean | Whether the user is blocked. |
| verified | boolean | Whether the user has verified their account. |
| timeZone | string | Timezone of the user. |
| locale | string | Locale of the user. |
| createdAt | string | Date and time when the user was created. |
| mutedUntil | string | Date and time until which the user is muted. |
| tags | array | Tags associated with the user. |
| details | object | Custom details for the user. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/User",
"title": "User",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier of the user."
},
"username": {
"type": "string",
"format": "email",
"description": "Email address and login identifier."
},
"fullName": {
"type": "string",
"description": "Full name of the user."
},
"role": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Role ID."
},
"name": {
"type": "string",
"description": "Role name."
}
},
"description": "Role of the user."
},
"blocked": {
"type": "boolean",
"description": "Whether the user is blocked."
},
"verified": {
"type": "boolean",
"description": "Whether the user has verified their account."
},
"timeZone": {
"type": "string",
"description": "Timezone of the user."
},
"locale": {
"type": "string",
"description": "Locale of the user."
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "Date and time when the user was created."
},
"mutedUntil": {
"type": "string",
"format": "date-time",
"description": "Date and time until which the user is muted."
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Tags associated with the user."
},
"details": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"type": "string"
}
},
"description": "Custom details for the user."
}
}
}