mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
|
import { FromSchema } from 'json-schema-to-ts';
|
||
|
import { groupUserModelSchema } from './group-user-model-schema';
|
||
|
import { userSchema } from './user-schema';
|
||
|
|
||
|
export const groupSchema = {
|
||
|
$id: '#/components/schemas/groupSchema',
|
||
|
type: 'object',
|
||
|
additionalProperties: false,
|
||
|
required: ['name', 'users'],
|
||
|
properties: {
|
||
|
id: {
|
||
|
type: 'number',
|
||
|
},
|
||
|
name: {
|
||
|
type: 'string',
|
||
|
},
|
||
|
description: {
|
||
|
type: 'string',
|
||
|
},
|
||
|
createdBy: {
|
||
|
type: 'string',
|
||
|
nullable: true,
|
||
|
},
|
||
|
createdAt: {
|
||
|
type: 'string',
|
||
|
format: 'date-time',
|
||
|
nullable: true,
|
||
|
},
|
||
|
users: {
|
||
|
type: 'array',
|
||
|
items: {
|
||
|
$ref: '#/components/schemas/groupUserModelSchema',
|
||
|
},
|
||
|
},
|
||
|
projects: {
|
||
|
type: 'array',
|
||
|
items: {
|
||
|
type: 'string',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
components: {
|
||
|
schemas: {
|
||
|
groupUserModelSchema,
|
||
|
userSchema,
|
||
|
},
|
||
|
},
|
||
|
} as const;
|
||
|
|
||
|
export type GroupSchema = FromSchema<typeof groupSchema>;
|