unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
23 lines • 717 B
JavaScript
export const featureTypeCountSchema = {
$id: '#/components/schemas/featureTypeCountSchema',
type: 'object',
additionalProperties: false,
required: ['type', 'count'],
description: 'A count of feature flags of a specific type',
properties: {
type: {
type: 'string',
example: 'kill-switch',
description: 'Type of the flag e.g. experiment, kill-switch, release, operational, permission',
},
count: {
type: 'number',
example: 1,
description: 'Number of feature flags of this type',
},
},
components: {
schemas: {},
},
};
//# sourceMappingURL=feature-type-count-schema.js.map