@appsemble/utils
Version:
Utility functions used in Appsemble internally
23 lines (22 loc) • 628 B
JavaScript
export const UserEmail = {
type: 'object',
description: `
An email address that is linked to a user.
Users may use any of their email addresses to login.
`,
required: ['email'],
additionalProperties: false,
properties: {
email: {
type: 'string',
format: 'email',
description: 'The email address that is registered',
},
verified: {
type: 'boolean',
readOnly: true,
description: 'Wether or not the email address has been verified by the user.',
},
},
};
//# sourceMappingURL=UserEmail.js.map