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/role-schema.ts
olav ab75d4085e
refactor: add schemas to user admin controller (#1692)
* refactor: add schemas to user admin controller

* refactor: remove unused SessionService

* refactor: fix search query type confusion

* refactor: add schemas to user controller (#1693)

* refactor: add schemas to user controller

* refactor: fix getAllUserSplashes method name

* refactor: name and email should not be required on create

* refactor: only some user fields may be updated

* refactor: should not require any fields on user update  (#1730)

* refactor: send 400 instead of 500 on missing username and email

* refactor: should not require any fields for user update

* refactor: note that earlier versions required name or email

* refactor: merge roleDescriptionSchema and roleSchema
2022-06-22 14:55:43 +02:00

26 lines
551 B
TypeScript

import { FromSchema } from 'json-schema-to-ts';
export const roleSchema = {
$id: '#/components/schemas/roleSchema',
type: 'object',
additionalProperties: false,
required: ['id', 'type', 'name'],
properties: {
id: {
type: 'number',
},
type: {
type: 'string',
},
name: {
type: 'string',
},
description: {
type: 'string',
},
},
components: {},
} as const;
export type RoleSchema = FromSchema<typeof roleSchema>;