Compare commits
No commits in common. "0b5ea285de47a51416c7b7ba9884b5910fd191d1" and "f2188f636302c932fd5b6c74222dc2057e0f558e" have entirely different histories.
0b5ea285de
...
f2188f6363
2 changed files with 2 additions and 72 deletions
|
|
@ -540,47 +540,7 @@ components:
|
||||||
additionalProperties: true
|
additionalProperties: true
|
||||||
User:
|
User:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
additionalProperties: true
|
||||||
user_id:
|
|
||||||
type: integer
|
|
||||||
format: int32
|
|
||||||
description: Unique user ID (primary key)
|
|
||||||
example: 1
|
|
||||||
avatar_id:
|
|
||||||
type: integer
|
|
||||||
format: int32
|
|
||||||
description: ID of the user avatar (references images table)
|
|
||||||
nullable: true
|
|
||||||
example: null
|
|
||||||
mail:
|
|
||||||
type: string
|
|
||||||
format: email
|
|
||||||
description: User email
|
|
||||||
example: "john.doe@example.com"
|
|
||||||
nickname:
|
|
||||||
type: string
|
|
||||||
description: Username (alphanumeric + _ or -)
|
|
||||||
maxLength: 16
|
|
||||||
example: "john_doe_42"
|
|
||||||
disp_name:
|
|
||||||
type: string
|
|
||||||
description: Display name
|
|
||||||
maxLength: 32
|
|
||||||
example: "John Doe"
|
|
||||||
user_desc:
|
|
||||||
type: string
|
|
||||||
description: User description
|
|
||||||
maxLength: 512
|
|
||||||
example: "Just a regular user."
|
|
||||||
creation_date:
|
|
||||||
type: string
|
|
||||||
format: date-time
|
|
||||||
description: Timestamp when the user was created
|
|
||||||
example: "2025-10-10T23:45:47.908073Z"
|
|
||||||
required:
|
|
||||||
- user_id
|
|
||||||
- nickname
|
|
||||||
- creation_date
|
|
||||||
UserTitle:
|
UserTitle:
|
||||||
type: object
|
type: object
|
||||||
additionalProperties: true
|
additionalProperties: true
|
||||||
|
|
|
||||||
|
|
@ -2,34 +2,4 @@
|
||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type User = {
|
export type User = Record<string, any>;
|
||||||
/**
|
|
||||||
* Unique user ID (primary key)
|
|
||||||
*/
|
|
||||||
user_id: number;
|
|
||||||
/**
|
|
||||||
* ID of the user avatar (references images table)
|
|
||||||
*/
|
|
||||||
avatar_id?: number | null;
|
|
||||||
/**
|
|
||||||
* User email
|
|
||||||
*/
|
|
||||||
mail?: string;
|
|
||||||
/**
|
|
||||||
* Username (alphanumeric + _ or -)
|
|
||||||
*/
|
|
||||||
nickname: string;
|
|
||||||
/**
|
|
||||||
* Display name
|
|
||||||
*/
|
|
||||||
disp_name?: string;
|
|
||||||
/**
|
|
||||||
* User description
|
|
||||||
*/
|
|
||||||
user_desc?: string;
|
|
||||||
/**
|
|
||||||
* Timestamp when the user was created
|
|
||||||
*/
|
|
||||||
creation_date: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue