mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-17 13:46:47 +02:00
36 lines
1.2 KiB
TypeScript
36 lines
1.2 KiB
TypeScript
import type { FromSchema } from 'json-schema-to-ts';
|
|
import { healthOverviewSchema } from './health-overview-schema';
|
|
|
|
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,
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export type HealthReportSchema = FromSchema<typeof healthReportSchema>;
|