unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
26 lines • 794 B
JavaScript
import { groupSchema } from './group-schema.js';
import { groupUserModelSchema } from './group-user-model-schema.js';
import { userSchema } from './user-schema.js';
export const groupsSchema = {
$id: '#/components/schemas/groupsSchema',
type: 'object',
additionalProperties: false,
description: 'A list of [user groups](https://docs.getunleash.io/concepts/rbac#user-groups)',
properties: {
groups: {
description: 'A list of groups',
type: 'array',
items: {
$ref: '#/components/schemas/groupSchema',
},
},
},
components: {
schemas: {
groupSchema,
groupUserModelSchema,
userSchema,
},
},
};
//# sourceMappingURL=groups-schema.js.map