1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-01 01:18:10 +02:00
unleash.unleash/src/lib/openapi/spec/password-schema.ts
2023-06-05 11:58:25 +02:00

23 lines
519 B
TypeScript

import { FromSchema } from 'json-schema-to-ts';
export const passwordSchema = {
$id: '#/components/schemas/passwordSchema',
type: 'object',
additionalProperties: false,
required: ['password'],
properties: {
password: {
type: 'string',
},
oldPassword: {
type: 'string',
},
confirmPassword: {
type: 'string',
},
},
components: {},
} as const;
export type PasswordSchema = FromSchema<typeof passwordSchema>;