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/groups-schema.ts

28 lines
720 B
TypeScript
Raw Normal View History

import { FromSchema } from 'json-schema-to-ts';
import { groupSchema } from './group-schema';
import { groupUserModelSchema } from './group-user-model-schema';
import { userSchema } from './user-schema';
export const groupsSchema = {
$id: '#/components/schemas/groupsSchema',
type: 'object',
additionalProperties: false,
properties: {
groups: {
type: 'array',
items: {
$ref: '#/components/schemas/groupSchema',
},
},
},
components: {
schemas: {
groupSchema,
groupUserModelSchema,
userSchema,
},
},
} as const;
export type GroupsSchema = FromSchema<typeof groupsSchema>;