unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
19 lines • 658 B
JavaScript
export const applicationOverviewIssuesSchema = {
$id: '#/components/schemas/applicationOverviewIssuesSchema',
type: 'object',
description: 'This list of issues that might be wrong with the application',
additionalProperties: false,
required: ['missingStrategies'],
properties: {
missingStrategies: {
type: 'array',
items: {
type: 'string',
},
description: 'The list of strategies that are missing from Unleash',
example: ['feature1', 'feature2'],
},
},
components: {},
};
//# sourceMappingURL=application-overview-issues-schema.js.map