UNPKG

unleash-server

Version:

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

31 lines 982 B
export const createInvitedUserSchema = { $id: '#/components/schemas/createInvitedUserSchema', type: 'object', additionalProperties: false, required: ['email', 'name', 'password'], description: 'Data used to create a user that has been invited to Unleash.', properties: { username: { type: 'string', description: "The user's username. Must be unique if provided.", example: 'Hunter', }, email: { type: 'string', description: "The invited user's email address", example: 'hunter@example.com', }, name: { type: 'string', description: "The user's name", example: 'Hunter Burgan', }, password: { type: 'string', description: "The user's password", example: 'hunter2', }, }, components: {}, }; //# sourceMappingURL=create-invited-user-schema.js.map