UNPKG

unleash-server

Version:

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

16 lines 503 B
export const emailSchema = { $id: '#/components/schemas/emailSchema', type: 'object', additionalProperties: false, required: ['email'], description: 'Represents the email of a user. Used to send email communication (reset password, welcome mail etc)', properties: { email: { description: 'The email address', type: 'string', example: 'test@example.com', }, }, components: {}, }; //# sourceMappingURL=email-schema.js.map