UNPKG

@appsemble/utils

Version:

Utility functions used in Appsemble internally

26 lines 734 B
export const AppMember = { type: 'object', description: 'An object representing a member of an app', additionalProperties: false, properties: { id: { type: 'string', readOnly: true, description: 'The id of the app member.', }, role: { type: 'string', description: 'The role of the app member within the app.', }, name: { type: 'string', description: 'The full name of the app member.', }, email: { type: 'string', format: 'email', description: 'The email address of the app member.', }, }, }; //# sourceMappingURL=AppMember.js.map