UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

21 lines 616 B
export const loginSchema = { $id: '#/components/schemas/loginSchema', type: 'object', additionalProperties: false, required: ['username', 'password'], description: 'A username/password login request', properties: { username: { description: 'The username trying to log in', type: 'string', example: 'user', }, password: { description: 'The password of the user trying to log in', type: 'string', example: 'hunter2', }, }, components: {}, }; //# sourceMappingURL=login-schema.js.map