mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-09 00:18:00 +01:00
53 lines
1.1 KiB
TypeScript
53 lines
1.1 KiB
TypeScript
|
import { FromSchema } from 'json-schema-to-ts';
|
||
|
|
||
|
export const userSchema = {
|
||
|
$id: '#/components/schemas/userSchema',
|
||
|
type: 'object',
|
||
|
additionalProperties: false,
|
||
|
required: ['id'],
|
||
|
properties: {
|
||
|
id: {
|
||
|
type: 'number',
|
||
|
},
|
||
|
isAPI: {
|
||
|
type: 'boolean',
|
||
|
},
|
||
|
name: {
|
||
|
type: 'string',
|
||
|
},
|
||
|
email: {
|
||
|
type: 'string',
|
||
|
},
|
||
|
username: {
|
||
|
type: 'string',
|
||
|
},
|
||
|
imageUrl: {
|
||
|
type: 'string',
|
||
|
},
|
||
|
inviteLink: {
|
||
|
type: 'string',
|
||
|
},
|
||
|
loginAttempts: {
|
||
|
type: 'number',
|
||
|
},
|
||
|
emailSent: {
|
||
|
type: 'boolean',
|
||
|
},
|
||
|
rootRole: {
|
||
|
type: 'number',
|
||
|
},
|
||
|
seenAt: {
|
||
|
type: 'string',
|
||
|
format: 'date-time',
|
||
|
nullable: true,
|
||
|
},
|
||
|
createdAt: {
|
||
|
type: 'string',
|
||
|
format: 'date-time',
|
||
|
},
|
||
|
},
|
||
|
components: {},
|
||
|
} as const;
|
||
|
|
||
|
export type UserSchema = FromSchema<typeof userSchema>;
|