unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
31 lines • 1.09 kB
JavaScript
import { healthOverviewSchema } from './health-overview-schema.js';
export const healthReportSchema = {
...healthOverviewSchema,
$id: '#/components/schemas/healthReportSchema',
description: 'A report of the current health of the requested project, with datapoints like counters of currently active, stale, and potentially stale feature flags.',
required: [
...healthOverviewSchema.required,
'potentiallyStaleCount',
'activeCount',
'staleCount',
],
properties: {
...healthOverviewSchema.properties,
potentiallyStaleCount: {
type: 'number',
description: 'The number of potentially stale feature flags.',
example: 5,
},
activeCount: {
type: 'number',
description: 'The number of active feature flags.',
example: 2,
},
staleCount: {
type: 'number',
description: 'The number of stale feature flags.',
example: 10,
},
},
};
//# sourceMappingURL=health-report-schema.js.map