UNPKG

unleash-server

Version:

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

16 lines 592 B
export const validatePasswordSchema = { $id: '#/components/schemas/validatePasswordSchema', type: 'object', additionalProperties: false, required: ['password'], description: 'Used to validate passwords obeying [Unleash password guidelines](https://docs.getunleash.io/using-unleash/deploy/configuring-unleash#securing-unleash)', properties: { password: { description: 'The password to validate', type: 'string', example: 'hunter2', }, }, components: {}, }; //# sourceMappingURL=validate-password-schema.js.map