@appsemble/lang-sdk
Version:
Language SDK for Appsemble
17 lines • 719 B
JavaScript
export const SecurityDefinition = {
type: 'object',
description: 'This describes how the app is secured.',
additionalProperties: false,
properties: {
default: { $ref: '#/components/schemas/SecurityDefaultDefinition' },
guest: { $ref: '#/components/schemas/SecurityGuestDefinition' },
cron: { $ref: '#/components/schemas/SecurityCronDefinition' },
roles: {
type: 'object',
description: 'This property defines the app roles that are available within the app.',
minProperties: 1,
additionalProperties: { $ref: '#/components/schemas/SecurityRoleDefinition' },
},
},
};
//# sourceMappingURL=SecurityDefinition.js.map