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
Simon Hornby 3b42e866ec
feat: root roles from groups (#3559)
feat: adds a way to specify a root role on a group, which will cause any user entering into that group to take on the permissions of that root role

Co-authored-by: Nuno Góis <github@nunogois.com>
2023-04-20 12:29:30 +02:00

64 lines
1.6 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: true,
required: ['name'],
properties: {
id: {
type: 'number',
},
name: {
type: 'string',
},
description: {
type: 'string',
nullable: true,
},
mappingsSSO: {
type: 'array',
items: {
type: 'string',
},
},
rootRole: {
type: 'number',
nullable: true,
description:
'A role id that is used as the root role for all users in this group. This can be either the id of the Editor or Admin role.',
},
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>;