1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-11-01 19:07:38 +01:00
unleash.unleash/src/lib/openapi/spec/group-schema.ts

88 lines
2.6 KiB
TypeScript
Raw Normal View History

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',
2023-07-24 11:05:55 +02:00
additionalProperties: false,
required: ['name'],
2023-07-18 11:08:45 +02:00
description: 'A detailed information about a user group',
properties: {
id: {
2023-07-18 11:08:45 +02:00
description: 'The group id',
type: 'integer',
example: 1,
},
name: {
2023-07-18 11:08:45 +02:00
description: 'The name of the group',
type: 'string',
2023-07-18 11:08:45 +02:00
example: 'DX team',
},
description: {
2023-07-18 11:08:45 +02:00
description: 'A custom description of the group',
type: 'string',
nullable: true,
2023-07-18 11:08:45 +02:00
example: 'Current members of the DX squad',
},
mappingsSSO: {
2023-07-18 11:08:45 +02:00
description:
'A list of SSO groups that should map to this Unleash group',
type: 'array',
items: {
type: 'string',
},
2023-07-18 11:08:45 +02:00
example: ['SSOGroup1', 'SSOGroup2'],
},
rootRole: {
type: 'number',
nullable: true,
description:
2023-07-18 11:08:45 +02:00
'A role id that is used as the root role for all users in this group. This can be either the id of the Viewer, Editor or Admin role.',
example: 1,
},
createdBy: {
2023-07-18 11:08:45 +02:00
description: 'A user who created this group',
type: 'string',
nullable: true,
2023-07-18 11:08:45 +02:00
example: 'admin',
},
createdAt: {
2023-07-18 11:08:45 +02:00
description: 'When was this group created',
type: 'string',
format: 'date-time',
nullable: true,
2023-07-18 11:08:45 +02:00
example: '2023-06-30T11:41:00.123Z',
},
users: {
type: 'array',
2023-07-18 11:08:45 +02:00
description: 'A list of users belonging to this group',
items: {
$ref: '#/components/schemas/groupUserModelSchema',
},
},
projects: {
2023-07-18 11:08:45 +02:00
description: 'A list of projects where this group is used',
type: 'array',
items: {
type: 'string',
},
2023-07-18 11:08:45 +02:00
example: ['default', 'my-project'],
},
userCount: {
description: 'The number of users that belong to this group',
example: 1,
type: 'integer',
minimum: 0,
},
},
components: {
schemas: {
groupUserModelSchema,
userSchema,
},
},
} as const;
export type GroupSchema = FromSchema<typeof groupSchema>;