unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
27 lines • 889 B
JavaScript
import { inactiveUserSchema } from './inactive-user-schema.js';
export const inactiveUsersSchema = {
$id: '#/components/schemas/inactiveUsersSchema',
type: 'object',
additionalProperties: false,
description: 'A list of users that has been flagged as inactive',
required: ['version', 'inactiveUsers'],
properties: {
version: {
description: 'The version of this schema. Used to keep track of compatibility',
type: 'integer',
minimum: 1,
example: 1,
},
inactiveUsers: {
description: 'The list of users that are flagged as inactive',
type: 'array',
items: {
$ref: '#/components/schemas/inactiveUserSchema',
},
},
},
components: {
inactiveUserSchema,
},
};
//# sourceMappingURL=inactive-users-schema.js.map