unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
23 lines • 855 B
JavaScript
export const adminCountSchema = {
$id: '#/components/schemas/adminCountSchema',
type: 'object',
additionalProperties: false,
description: 'Contains total admin counts for an Unleash instance.',
required: ['password', 'noPassword', 'service'],
properties: {
password: {
type: 'number',
description: 'Total number of admins that have a password set.',
},
noPassword: {
type: 'number',
description: 'Total number of admins that do not have a password set. May be SSO, but may also be users that did not set a password yet.',
},
service: {
type: 'number',
description: 'Total number of service accounts that have the admin root role.',
},
},
components: {},
};
//# sourceMappingURL=admin-count-schema.js.map