UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

38 lines 1.18 kB
export const featureLifecycleCountSchema = { $id: '#/components/schemas/featureLifecycleCountSchema', type: 'object', description: 'A number features in each of the lifecycle stages', required: ['initial', 'preLive', 'live', 'completed', 'archived'], additionalProperties: false, properties: { initial: { type: 'number', example: 1, description: 'Number of features in the initial stage', }, preLive: { type: 'number', example: 1, description: 'Number of features in the pre-live stage', }, live: { type: 'number', example: 1, description: 'Number of features in the live stage', }, completed: { type: 'number', example: 1, description: 'Number of features in the completed stage', }, archived: { type: 'number', example: 1, description: 'Number of features in the archived stage', }, }, components: { schemas: {}, }, }; //# sourceMappingURL=feature-lifecycle-count-schema.js.map