@appsemble/utils
Version:
Utility functions used in Appsemble internally
29 lines • 810 B
JavaScript
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.',
},
roles: {
type: 'array',
items: {
type: 'string',
},
description: 'The direct roles 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